-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.test.js
61 lines (53 loc) · 1.49 KB
/
main.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import {exec as execCB} from 'child_process'
import fs from 'fs'
function exec(command, {
commandOptions = {},
ignoreErrors = false
} = {}) {
return new Promise((resolve, reject) => {
execCB(command, commandOptions, (error, stdout, stderr) => {
if (stdout) {
console.log(stdout)
}
if (!ignoreErrors && stderr) {
console.error(stderr)
}
if (!ignoreErrors && error) {
return reject(error)
}
return resolve(stdout)
})
})
}
test('no console', async () => {
await exec(
'rimraf results.json',
{commandOptions: {cwd: './inner-tests'}}
)
await exec(
'npx jest --config=./jest.config.json --json --outputFile=./results.json --bail=0',
{commandOptions: {cwd: './inner-tests'}, ignoreErrors: true}
)
const results = JSON.parse(fs.readFileSync('inner-tests/results.json'))
expect(results.testResults[0].assertionResults).toEqual([
expect.objectContaining({
"fullName": "no console usage - should pass",
"status": "passed"
}),
expect.objectContaining({
"fullName": "console info - should pass",
"status": "passed"
}),
expect.objectContaining({
"fullName": "simple unhandled console log - should fail",
"status": "failed",
"failureMessages": [
expect.stringContaining("Unhandled console messages")
]
}),
expect.objectContaining({
"fullName": "simple handled console log - should pass",
"status": "passed"
}),
])
})