Skip to content

Commit b206737

Browse files
committed
Merge branch '3.x' into release-3.7.6
2 parents 6f0d35b + 74fc377 commit b206737

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed
File renamed without changes.

test/data/sandbox/custom-worker/custom_test.worker.js renamed to test/data/sandbox/custom-worker/2_custom_test.worker.js

File renamed without changes.
File renamed without changes.

test/unit/worker_test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ describe('Workers', function () {
4646

4747
it('should create worker by function', done => {
4848
const createTestGroups = () => {
49-
const files = [[path.join(codecept_dir, '/custom-worker/base_test.worker.js')], [path.join(codecept_dir, '/custom-worker/custom_test.worker.js')]]
49+
const files = [[path.join(codecept_dir, '/custom-worker/3_base_test.worker.js')], [path.join(codecept_dir, '/custom-worker/2_custom_test.worker.js')]]
5050

5151
return files
5252
}
@@ -125,10 +125,10 @@ describe('Workers', function () {
125125
const workers = new Workers(-1, workerConfig)
126126

127127
const workerOne = workers.spawn()
128-
workerOne.addTestFiles([path.join(codecept_dir, '/custom-worker/base_test.worker.js')])
128+
workerOne.addTestFiles([path.join(codecept_dir, '/custom-worker/3_base_test.worker.js')])
129129

130130
const workerTwo = workers.spawn()
131-
workerTwo.addTestFiles([path.join(codecept_dir, '/custom-worker/custom_test.worker.js')])
131+
workerTwo.addTestFiles([path.join(codecept_dir, '/custom-worker/2_custom_test.worker.js')])
132132

133133
for (const worker of workers.getWorkers()) {
134134
worker.addConfig({

0 commit comments

Comments
 (0)