-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathtest.js
41 lines (30 loc) · 1.04 KB
/
test.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
import test from '@ava/test';
import {cleanOutput, cwd, fixture} from '../helpers/exec.js';
test('errors if top-level files is an empty array', async t => {
const options = {
cwd: cwd('files'),
};
const result = await t.throwsAsync(fixture([], options));
t.snapshot(cleanOutput(result.stderr), 'fails with message');
});
test('errors if watchMode.ignoreChanges is an empty array', async t => {
const options = {
cwd: cwd('ignored-by-watcher'),
};
const result = await t.throwsAsync(fixture([], options));
t.snapshot(cleanOutput(result.stderr), 'fails with message');
});
test('files can be filtered by directory', async t => {
const options = {
cwd: cwd('filter-by-directory'),
};
const result = await fixture(['directory'], options);
t.snapshot(result.stats.passed);
});
test('additional files can be provided', async t => {
const options = {
cwd: cwd('treat-patterns-as-files'),
};
const result = await fixture(['foo.js', 'foo.ts', 'missing.js', '_helper.js', 'node_modules/test.js'], options);
t.snapshot(result.stats.passed);
});