-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathtest.js
36 lines (26 loc) · 981 Bytes
/
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
import test from '@ava/test';
import {cleanOutput, cwd, fixture} from '../helpers/exec.js';
test('sets default environment variables from the config', async t => {
const options = {
cwd: cwd('environment-variables'),
};
const results = await fixture(['environment-variables.js'], options);
t.snapshot(results.stats.passed, 'tests pass');
});
test('overrides environment variables provided through the CLI', async t => {
const options = {
cwd: cwd('environment-variables'),
env: {
MY_ENVIRONMENT_VARIABLE: 'some value (updated)',
},
};
const results = await fixture(['environment-variables.js'], options);
t.snapshot(results.stats.passed, 'tests pass');
});
test('errors if environment variables are not string values', async t => {
const options = {
cwd: cwd('invalid-environment-variables'),
};
const result = await t.throwsAsync(fixture(['environment-variables.js'], options));
t.snapshot(cleanOutput(result.stderr), 'fails with message');
});