deno.land / x / lume@v2.1.4 / tests / remote_files.test.ts

remote_files.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
import { assertSiteSnapshot, build, getSite } from "./utils.ts";import postcss from "../plugins/postcss.ts";import sass from "../plugins/sass.ts";import esbuild from "../plugins/esbuild.ts";import nunjucks from "../plugins/nunjucks.ts";
Deno.test("render remote files", { sanitizeOps: false, sanitizeResources: false,}, async (t) => { const site = getSite({ src: "remote_files", }); site.copy("asset.txt"); site.use(postcss()); site.use(sass()); site.use(esbuild()); site.use(nunjucks());
const base = import.meta.resolve("./assets/remote_files/_remotes/");
site.remoteFile("_includes/remote1.njk", new URL("./remote1.njk", base).href); site.remoteFile( "_includes/templates/remote-template2.njk", new URL("./remote-template2.njk", base).href, ); site.remoteFile("asset.txt", new URL("./asset.txt", base).href); site.remoteFile("styles2.css", new URL("./styles2.css", base).href); site.remoteFile( "_includes/remote-style.css", new URL("./remote-style.css", base).href, ); site.remoteFile( "other-remote-style.css", new URL("./other-remote-style.css", base).href, ); site.remoteFile("_data.yml", new URL("./_data.yml", base).href); site.remoteFile("_includes/hello.js", new URL("./hello.js", base).href); site.remoteFile( "_includes/variables.scss", new URL("./variables.scss", base).href, );
await build(site); await assertSiteSnapshot(t, site);});
lume

Version Info

Tagged at
a month ago