Skip to content

Commit

Permalink
fix: joi args in step when running with workers
Browse files Browse the repository at this point in the history
  • Loading branch information
kobenguyent committed Dec 22, 2023
1 parent 342c365 commit 44e8010
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions test/bdd_acceptance_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ describe('RP Plugin - Codeceptjs Integration - BDD Feature', () => {
it('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 ');
Expand All @@ -22,7 +21,6 @@ describe('RP Plugin - Codeceptjs Integration - BDD Feature', () => {
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');
Expand Down

0 comments on commit 44e8010

Please sign in to comment.