for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
const postcss = require('postcss')
const plugin = require('./')
async function run (input, output, opts = { }) {
let result = await postcss([plugin(opts)]).process(input, { from: undefined })
expect(result.css).toEqual(output)
expect(result.warnings()).toHaveLength(0)
}
/* Write tests here
it('does something', async () => {
await run('a{ }', 'a{ }', { })
})
*/