-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathresolve-path.spec.js
64 lines (50 loc) · 1.58 KB
/
resolve-path.spec.js
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
55
56
57
58
59
60
61
62
63
import path, {dirname} from 'node:path';
import {promisify} from 'node:util';
import tryToCatch from 'try-to-catch';
import test from 'supertape';
import {fileURLToPath} from 'node:url';
import resolvePath from './resolve-path.js';
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
test('resolve-path: args', async (t) => {
const [e] = await tryToCatch(resolvePath);
t.equal(e.message, 'name should be string!');
t.end();
});
test('resolve-path: module installed in inner directory', async (t) => {
const expect = path.resolve(__dirname, '..', 'node_modules/monaco-editor');
const stat = promisify((name, fn) => {
fn();
});
const name = await resolvePath('monaco-editor', {
stat,
});
t.equal(name, expect, 'should return path in inner directory');
t.end();
});
test('resolve-path: module installed in outer directory', async (t) => {
let onceError = false;
const stat = promisify((name, fn) => {
if (onceError) {
fn();
} else {
onceError = true;
fn(Error('some error'));
}
});
const name = await resolvePath('monaco', {
stat,
});
t.ok(name, 'should return path in outer directory');
t.end();
});
test('resolve-path: module not installed', async (t) => {
const stat = promisify((name, fn) => {
fn(Error());
});
const [e] = await tryToCatch(resolvePath, 'monaco', {
stat,
});
t.ok(e, 'should reject when module not found');
t.end();
});