-
-
Notifications
You must be signed in to change notification settings - Fork 883
Expand file tree
/
Copy pathjest.tsx
More file actions
85 lines (73 loc) · 1.97 KB
/
jest.tsx
File metadata and controls
85 lines (73 loc) · 1.97 KB
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
import React, {useState, useEffect, useCallback} from 'react';
import PQueue from 'p-queue';
import delay from 'delay';
import ms from 'ms';
import {Static, Box, render} from '../../src/index.js';
import Summary from './summary.jsx';
import Test from './test.js';
const paths = [
'tests/login.js',
'tests/signup.js',
'tests/forgot-password.js',
'tests/reset-password.js',
'tests/view-profile.js',
'tests/edit-profile.js',
'tests/delete-profile.js',
'tests/posts.js',
'tests/post.js',
'tests/comments.js',
];
type TestResult = {
path: string;
status: string;
};
function Jest() {
const [startTime, setStartTime] = useState(Date.now);
const [completedTests, setCompletedTests] = useState<TestResult[]>([]);
const [runningTests, setRunningTests] = useState<TestResult[]>([]);
const runTest = useCallback(async (path: string) => {
setRunningTests(previous => [
...previous,
{
status: 'runs',
path,
},
]);
await delay(1000 * Math.random());
setRunningTests(previous => previous.filter(test => test.path !== path));
setCompletedTests(previous => [
...previous,
{
status: Math.random() < 0.5 ? 'pass' : 'fail',
path,
},
]);
}, []);
useEffect(() => {
const queue = new PQueue({concurrency: 4});
for (const path of paths) {
void queue.add(async () => runTest(path));
}
}, [runTest]);
return (
<Box flexDirection="column">
<Static items={completedTests}>
{test => <Test key={test.path} status={test.status} path={test.path} />}
</Static>
{runningTests.length > 0 && (
<Box flexDirection="column" marginTop={1}>
{runningTests.map(test => (
<Test key={test.path} status={test.status} path={test.path} />
))}
</Box>
)}
<Summary
isFinished={runningTests.length === 0}
passed={completedTests.filter(test => test.status === 'pass').length}
failed={completedTests.filter(test => test.status === 'fail').length}
time={ms(Date.now() - startTime)}
/>
</Box>
);
}
render(<Jest />);