forked from denoland/std
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathload_test.ts
More file actions
54 lines (49 loc) · 1.29 KB
/
Copy pathload_test.ts
File metadata and controls
54 lines (49 loc) · 1.29 KB
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
52
53
54
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { assertEquals } from "@std/assert";
import * as path from "@std/path";
const moduleDir = path.dirname(path.fromFileUrl(import.meta.url));
const testdataDir = path.resolve(moduleDir, "testdata");
Deno.test({
name: "load()",
async fn() {
const command = new Deno.Command(Deno.execPath(), {
args: [
"run",
"--allow-read",
"--allow-env",
"--no-lock",
path.join(testdataDir, "./app_load.ts"),
],
clearEnv: true,
cwd: testdataDir,
});
const { stdout } = await command.output();
const decoder = new TextDecoder();
assertEquals(
decoder.decode(stdout).trim(),
"hello world",
);
},
});
Deno.test({
name: "load() works as expected when the multiple files are imported",
async fn() {
const command = new Deno.Command(Deno.execPath(), {
args: [
"run",
"--no-lock",
"--allow-read",
"--allow-env",
path.join(testdataDir, "./app_load_parent.ts"),
],
clearEnv: true,
cwd: testdataDir,
});
const { stdout } = await command.output();
const decoder = new TextDecoder();
assertEquals(
decoder.decode(stdout).trim(),
"hello world",
);
},
});