forked from denoland/fresh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprecompile_test.ts
37 lines (33 loc) · 1.14 KB
/
precompile_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
import * as path from "@std/path";
import { expect } from "@std/expect";
Deno.test("JSX precompile - check config", async () => {
const cwd = path.join(import.meta.dirname!, "fixture_precompile", "invalid");
const output = await new Deno.Command(Deno.execPath(), {
args: [
"run",
"-A",
path.join(cwd, "dev.ts"),
],
cwd,
}).output();
const stderr = new TextDecoder().decode(output.stderr);
expect(stderr).toContain("jsxPrecompileSkipElements to contain");
expect(output.code).toEqual(1);
});
Deno.test("JSX precompile - run vnode hooks", async () => {
const cwd = path.join(import.meta.dirname!, "fixture_precompile", "valid");
const output = await new Deno.Command(Deno.execPath(), {
args: [
"run",
"-A",
path.join(cwd, "main.tsx"),
],
cwd,
}).output();
const stdout = new TextDecoder().decode(output.stdout);
expect(stdout).toContain('<img src="/foo.jpg?__frsh_c=');
expect(stdout).toContain('<source src="/bar.jpg?__frsh_c=');
expect(stdout).toContain('<div f-client-nav="true">');
expect(stdout).toContain('<span f-client-nav="false">');
expect(output.code).toEqual(0);
});