diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 6823030..5862eef 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -38,4 +38,4 @@ jobs: SHOUT-TEST_RESULTS: "${{steps.shout-test.outputs.result}}" A-COMMAND-TEST_RESULTS: "${{steps.a-command-test.outputs.result}}" with: - runners: "[shout-test,a-command-test]" + runners: "shout-test,a-command-test" diff --git a/__tests__/main.test.js b/__tests__/main.test.js index 6da60aa..4c81032 100644 --- a/__tests__/main.test.js +++ b/__tests__/main.test.js @@ -15,7 +15,6 @@ test('test runs', () => { const child = cp.spawnSync(node, [ip], options) const stdout = child.stdout.toString() - console.log(stdout) expect(stdout).toContain(`✅ Test 1`) }) @@ -25,7 +24,6 @@ test('test fails', () => { const child = cp.spawnSync(node, [ip], options) const stdout = child.stdout.toString() - console.log(stdout) expect(stdout).toContain(`❌ Test 1`) }) @@ -35,7 +33,6 @@ test('test errors out', () => { const child = cp.spawnSync(node, [ip], options) const stdout = child.stdout.toString() - console.log(stdout) expect(stdout).toContain(`Error: Test failed to execute.`) }) @@ -46,7 +43,6 @@ test('fails to run if input not in the right format', () => { const child = cp.spawnSync(node, [ip], options) const stderr = child.stderr.toString() - console.log(stderr) expect(stderr).toContain(`The runners input must be a comma-separated list of strings.`) })