-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
90 lines (74 loc) · 1.71 KB
/
index.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
const tests = []
let mocks = new Map
const onReadyHandlers = []
let testCount = 0
let testStart = 0
export function mock(f) {
return (m) => mocks.set(f, m)
}
export function fn(f) {
const wrapped = (...args) => (mocks.get(wrapped) || f)(...args)
return wrapped
}
export function test(...args) {
testCount++
tests.push(args[ 0 ])
}
export function onReady(f) {
return onReadyHandlers.push(f)
}
function printDescription(test) {
if (test.toString().includes('DESCRIPTION:')) {
const descOnset = test.toString().split('DESCRIPTION:')[1].trim()
let pos = 0
while (pos < descOnset.length) {
if (descOnset[ pos ] == '}') {
console.log('DESCRIPTION: ' + descOnset.slice(0, pos + 1).trim().replaceAll(/\s+/g, ' '))
break
}
pos++
}
} else {
console.log('Test has no DESCRIPTION block.')
console.log(test.toString())
}
}
async function runTests () {
mocks.clear()
if (tests.length) {
if (!testStart) {
testStart = Date.now()
}
const test = tests.shift()
printDescription(test)
test(runTests)
} else {
if (testCount) {
const time = (Date.now() - testStart)
console.log(`${ testCount } test(s) completed in ${ time }ms.`)
}
mocks.clear()
onReadyHandlers.forEach((f) => f())
}
}
export function setEnv(env) {
const node = (globalThis?.process)
const browser = (globalThis?.location)
if (env !== 'development') {
if (node) {
setTimeout(() => {
mocks.clear()
onReadyHandlers.forEach((f) => f())
})
} else if (browser) {
window.addEventListener('DOMContentLoaded', () => {
mocks.clear()
onReadyHandlers.forEach((f) => f())
})
}
} else if (browser) {
window.addEventListener('DOMContentLoaded', runTests)
} else {
setTimeout(runTests)
}
}