import { compile } from '../src' describe('compile', () => { it('should contain standard transforms', () => { const { code } = compile(`
test
red
`) expect(code).toMatchSnapshot() }) })