Skip to content

Commit 28b4604

Browse files
committed
fixup!
1 parent 52f696c commit 28b4604

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/threading/__tests__/parallel.test.mjs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -72,19 +72,19 @@ describe('createParallelWorker', () => {
7272

7373
const mockInput = [
7474
{
75-
file: { stem: 'test1', basename: 'test1.md' },
75+
path: 'test1',
7676
tree: { type: 'root', children: [] },
7777
},
7878
{
79-
file: { stem: 'test2', basename: 'test2.md' },
79+
path: 'test2',
8080
tree: { type: 'root', children: [] },
8181
},
8282
{
83-
file: { stem: 'test3', basename: 'test3.md' },
83+
path: 'test3',
8484
tree: { type: 'root', children: [] },
8585
},
8686
{
87-
file: { stem: 'test4', basename: 'test4.md' },
87+
path: 'test4',
8888
tree: { type: 'root', children: [] },
8989
},
9090
];
@@ -111,11 +111,11 @@ describe('createParallelWorker', () => {
111111

112112
const mockInput = [
113113
{
114-
file: { stem: 'test1', basename: 'test1.md' },
114+
path: 'test1',
115115
tree: { type: 'root', children: [] },
116116
},
117117
{
118-
file: { stem: 'test2', basename: 'test2.md' },
118+
path: 'test2',
119119
tree: { type: 'root', children: [] },
120120
},
121121
];
@@ -138,7 +138,7 @@ describe('createParallelWorker', () => {
138138

139139
const mockInput = [
140140
{
141-
file: { stem: 'test1', basename: 'test1.md' },
141+
path: 'test1',
142142
tree: { type: 'root', children: [] },
143143
},
144144
];
@@ -162,11 +162,11 @@ describe('createParallelWorker', () => {
162162

163163
const mockInput = [
164164
{
165-
file: { stem: 'test1', basename: 'test1.md' },
165+
path: 'test1',
166166
tree: { type: 'root', children: [] },
167167
},
168168
{
169-
file: { stem: 'test2', basename: 'test2.md' },
169+
path: 'test2',
170170
tree: { type: 'root', children: [] },
171171
},
172172
];

0 commit comments

Comments
 (0)