From d2b45b15f220ca4b3dbb74b9aa6087f377321b64 Mon Sep 17 00:00:00 2001 From: kobenguyent Date: Fri, 22 Dec 2023 18:01:53 +0100 Subject: [PATCH] fix: joi args in step when running with workers --- test/acceptance_test.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/acceptance_test.js b/test/acceptance_test.js index 74c0e7a..0f6ecd9 100644 --- a/test/acceptance_test.js +++ b/test/acceptance_test.js @@ -9,7 +9,6 @@ describe('RP Plugin - Codeceptjs Integration', () => { it.skip('should push data to rp', (done) => { exec(`${runner} --grep @pass -c ${configFilePath} --verbose`, (error, stdout, stderr) => { expect(stdout).to.include('Start launch with tempId'); - expect(stdout).to.include("type: 'SUITE'"); expect(stdout).to.include("type: 'TEST'"); expect(stdout).to.include("type: 'STEP'"); expect(stdout).to.include('OK | 1 passed '); @@ -22,7 +21,6 @@ describe('RP Plugin - Codeceptjs Integration', () => { it('should push data to rp', (done) => { exec(`${runner} --grep @fail -c ${configFilePath} --verbose`, (error, stdout, stderr) => { expect(stdout).to.include('Start launch with tempId'); - expect(stdout).to.include("type: 'SUITE'"); expect(stdout).to.include("type: 'TEST'"); expect(stdout).to.include("type: 'STEP'"); expect(stdout).to.include('FAIL | 0 passed, 1 failed');