-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathwasm.test.ts
51 lines (48 loc) · 982 Bytes
/
wasm.test.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import { expect, test } from "vitest";
import { transform } from "@swc/core";
import path from "node:path";
import url from "node:url";
const pluginName = "swc_plugin_relay.wasm";
const transformCode = async (
code: string,
options = {
rootDir: "",
},
) => {
return transform(code, {
jsc: {
parser: {
syntax: "ecmascript",
},
target: "es2018",
experimental: {
plugins: [
[
path.join(
path.dirname(url.fileURLToPath(import.meta.url)),
"..",
pluginName,
),
options,
],
],
},
},
filename: "test.js",
});
};
test("Should load relay wasm plugin correctly", async () => {
const input = `const myFragment = graphql\`
fragment FooFragment on Bar {
id
}
\`;
useQuery(graphql\`
query FooQuery {
id
}
\`);
`;
const { code } = await transformCode(input);
expect(code).toMatchSnapshot();
});