diff options
Diffstat (limited to 'cli/tests/testdata/test/steps/invalid_usage.out')
-rw-r--r-- | cli/tests/testdata/test/steps/invalid_usage.out | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/cli/tests/testdata/test/steps/invalid_usage.out b/cli/tests/testdata/test/steps/invalid_usage.out index f64f148b7..833c3a74f 100644 --- a/cli/tests/testdata/test/steps/invalid_usage.out +++ b/cli/tests/testdata/test/steps/invalid_usage.out @@ -14,6 +14,8 @@ inner missing await ... at testStepSanitizer [WILDCARD] FAILED ([WILDCARD]) Error: There were still test steps running after the current scope finished execution. Ensure all steps are awaited (ex. `await t.step(...)`). + await t.step("step", (t) => { + ^ at postValidation [WILDCARD] at testStepSanitizer [WILDCARD] at async fn ([WILDCARD]/invalid_usage.ts:[WILDCARD]) @@ -24,6 +26,8 @@ parallel steps with sanitizers ... step 2 ... FAILED ([WILDCARD]) Error: Cannot start test step while another test step with sanitizers is running. * parallel steps with sanitizers > step 1 + await t.step("step 2", () => {}); + ^ at preValidation ([WILDCARD]) at testStepSanitizer ([WILDCARD]) at [WILDCARD]/invalid_usage.ts:[WILDCARD] @@ -34,6 +38,8 @@ parallel steps when first has sanitizer ... step 2 ... FAILED ([WILDCARD]) Error: Cannot start test step while another test step with sanitizers is running. * parallel steps when first has sanitizer > step 1 + await t.step({ + ^ at preValidation ([WILDCARD]) at testStepSanitizer ([WILDCARD]) at [WILDCARD]/invalid_usage.ts:[WILDCARD] @@ -44,6 +50,8 @@ parallel steps when second has sanitizer ... step 2 ... FAILED ([WILDCARD]) Error: Cannot start test step with sanitizers while another test step is running. * parallel steps when second has sanitizer > step 1 + await t.step({ + ^ at preValidation ([WILDCARD]) at testStepSanitizer ([WILDCARD]) at [WILDCARD]/invalid_usage.ts:[WILDCARD] @@ -57,6 +65,8 @@ parallel steps where only inner tests have sanitizers ... step inner ... FAILED ([WILDCARD]) Error: Cannot start test step with sanitizers while another test step is running. * parallel steps where only inner tests have sanitizers > step 1 + await t.step({ + ^ at preValidation ([WILDCARD]) at testStepSanitizer ([WILDCARD]) at [WILDCARD]/invalid_usage.ts:[WILDCARD] @@ -67,6 +77,8 @@ failures: test/steps/invalid_usage.ts > capturing Error: Cannot run test step after parent scope has finished execution. Ensure any `.step(...)` calls are executed before their parent scope completes execution. + await capturedContext.step("next step", () => {}); + ^ at TestContext.step ([WILDCARD]) at [WILDCARD]/invalid_usage.ts:[WILDCARD] at [WILDCARD] |