swc/node-swc/__tests__/transform/issue_5325_test.mjs
2022-07-28 11:41:15 +09:00

10 lines
248 B
JavaScript

import swc from "../../..";
it("should transpile decorators", async () => {
const source = "`${100}testing`";
expect(swc.transformSync(source).code).toMatchInlineSnapshot(`
"\\"\\".concat(100, \\"testing\\");
"
`);
});