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

static_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
import { assertSiteSnapshot, build, getSite } from "./utils.ts";
Deno.test("Copy static files", async (t) => { const site = getSite({ src: "static_files", });
site.copy("static", "."); site.copy("other"); site.copy( "posts/2022-01-01_first-post/assets", (file) => file.replace(".scss", ".css"), ); site.copy("posts/2022-01-01_first-post/individual-file"); site.copy([".css", ".js"]); site.copy([".copy"]); site.copy("_headers"); site.copy("static/_redirects", "_redirects"); site.copy( [".copy2"], (file) => "/subdir" + file.replace(/\.copy2/, ".copy3"), );
// copied with the trailing slash site.copy("other2/");
// not copied because of the trailing slash site.copy("three.no/");
// Copy a directory inside a ignored directory site.copy("_static/inner", "inner");
await build(site); await assertSiteSnapshot(t, site);});
lume

Version Info

Tagged at
a month ago