swc/node-swc/__tests__/transform/issue_5325_test.mjs

10 lines
248 B
JavaScript
Raw Normal View History

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