mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 02:06:08 +03:00
9793926cc8
swc_ecma_minifier: - Fix an infinite loop. (#2028) - Don't remove span hygiene. (#2022) swc_ecma_codegen: - Fix codegen of `return` with `async` arrow. (#2020) swc: - Respect `minify = false`. (#2019)
16 lines
293 B
JavaScript
16 lines
293 B
JavaScript
import swc from "../../..";
|
|
|
|
it("should respect jsc.minify = false", async () => {
|
|
const { code } = await swc.transform(`
|
|
const hello = () => {
|
|
console.log('hello');
|
|
};
|
|
`, {
|
|
jsc: {
|
|
},
|
|
minify: false,
|
|
});
|
|
|
|
expect(code).toContain("\n");
|
|
})
|