2021-10-11 09:45:02 -04:00
[WILDCARD]
2022-04-11 12:27:17 -04:00
running 7 tests from test/steps/invalid_usage.ts
capturing ...
some step ... ok ([WILDCARD])
2021-10-11 09:45:02 -04:00
FAILED ([WILDCARD])
2022-04-11 12:27:17 -04:00
top level missing await ...
step ... pending ([WILDCARD])
2021-10-11 09:45:02 -04:00
FAILED ([WILDCARD])
2022-04-11 12:27:17 -04:00
inner missing await ...
step ...
inner ... pending ([WILDCARD])
2021-10-11 09:45:02 -04:00
Error: Parent scope completed before test step finished execution. Ensure all steps are awaited (ex. `await t.step(...)`).
at postValidation [WILDCARD]
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(...)`).
2022-04-16 13:51:12 -04:00
await t.step("step", (t) => {
^
2021-10-11 09:45:02 -04:00
at postValidation [WILDCARD]
at testStepSanitizer [WILDCARD]
at async fn ([WILDCARD]/invalid_usage.ts:[WILDCARD])
at async Object.testStepSanitizer [WILDCARD]
FAILED ([WILDCARD])
2022-04-11 12:27:17 -04:00
parallel steps with sanitizers ...
step 1 ... pending ([WILDCARD])
step 2 ... FAILED ([WILDCARD])
2021-10-11 09:45:02 -04:00
Error: Cannot start test step while another test step with sanitizers is running.
* parallel steps with sanitizers > step 1
2022-04-16 13:51:12 -04:00
await t.step("step 2", () => {});
^
2021-10-11 09:45:02 -04:00
at preValidation ([WILDCARD])
at testStepSanitizer ([WILDCARD])
at [WILDCARD]/invalid_usage.ts:[WILDCARD]
at [WILDCARD]
FAILED ([WILDCARD])
2022-04-11 12:27:17 -04:00
parallel steps when first has sanitizer ...
step 1 ... pending ([WILDCARD])
step 2 ... FAILED ([WILDCARD])
2021-10-11 09:45:02 -04:00
Error: Cannot start test step while another test step with sanitizers is running.
* parallel steps when first has sanitizer > step 1
2022-04-16 13:51:12 -04:00
await t.step({
^
2021-10-11 09:45:02 -04:00
at preValidation ([WILDCARD])
at testStepSanitizer ([WILDCARD])
at [WILDCARD]/invalid_usage.ts:[WILDCARD]
at [WILDCARD]
FAILED ([WILDCARD])
2022-04-11 12:27:17 -04:00
parallel steps when second has sanitizer ...
step 1 ... ok ([WILDCARD])
step 2 ... FAILED ([WILDCARD])
2021-10-11 09:45:02 -04:00
Error: Cannot start test step with sanitizers while another test step is running.
* parallel steps when second has sanitizer > step 1
2022-04-16 13:51:12 -04:00
await t.step({
^
2021-10-11 09:45:02 -04:00
at preValidation ([WILDCARD])
at testStepSanitizer ([WILDCARD])
at [WILDCARD]/invalid_usage.ts:[WILDCARD]
at [WILDCARD]
FAILED ([WILDCARD])
2022-04-11 12:27:17 -04:00
parallel steps where only inner tests have sanitizers ...
step 1 ...
step inner ... ok ([WILDCARD])
2021-10-11 09:45:02 -04:00
ok ([WILDCARD])
2022-04-11 12:27:17 -04:00
step 2 ...
step inner ... FAILED ([WILDCARD])
2021-10-11 09:45:02 -04:00
Error: Cannot start test step with sanitizers while another test step is running.
* parallel steps where only inner tests have sanitizers > step 1
2022-04-16 13:51:12 -04:00
await t.step({
^
2021-10-11 09:45:02 -04:00
at preValidation ([WILDCARD])
at testStepSanitizer ([WILDCARD])
at [WILDCARD]/invalid_usage.ts:[WILDCARD]
FAILED ([WILDCARD])
FAILED ([WILDCARD])
failures:
2022-04-11 12:27:17 -04:00
test/steps/invalid_usage.ts > capturing
2021-10-11 09:45:02 -04:00
Error: Cannot run test step after parent scope has finished execution. Ensure any `.step(...)` calls are executed before their parent scope completes execution.
2022-04-16 13:51:12 -04:00
await capturedContext.step("next step", () => {});
^
2021-10-11 09:45:02 -04:00
at TestContext.step ([WILDCARD])
at [WILDCARD]/invalid_usage.ts:[WILDCARD]
at [WILDCARD]
2022-04-11 12:27:17 -04:00
test/steps/invalid_usage.ts > top level missing await
2021-10-11 09:45:02 -04:00
Error: There were still test steps running after the current scope finished execution. Ensure all steps are awaited (ex. `await t.step(...)`).
at postValidation [WILDCARD]
at testStepSanitizer ([WILDCARD])
[WILDCARD]
2022-04-11 12:27:17 -04:00
test/steps/invalid_usage.ts > inner missing await
2021-10-11 09:45:02 -04:00
Error: 1 test step failed.
at [WILDCARD]
2022-04-11 12:27:17 -04:00
test/steps/invalid_usage.ts > parallel steps with sanitizers
2021-10-13 08:55:12 -04:00
Error: There were still test steps running after the current scope finished execution. Ensure all steps are awaited (ex. `await t.step(...)`).
at postValidation [WILDCARD]
at testStepSanitizer ([WILDCARD])
[WILDCARD]
2021-10-11 09:45:02 -04:00
2022-04-11 12:27:17 -04:00
test/steps/invalid_usage.ts > parallel steps when first has sanitizer
2021-10-11 09:45:02 -04:00
Error: 1 test step failed.
at runTest ([WILDCARD])
at [WILDCARD]
2022-04-11 12:27:17 -04:00
test/steps/invalid_usage.ts > parallel steps when second has sanitizer
2021-10-11 09:45:02 -04:00
Error: 1 test step failed.
at runTest ([WILDCARD])
at [WILDCARD]
failures:
2022-04-11 12:27:17 -04:00
test/steps/invalid_usage.ts
2021-10-11 09:45:02 -04:00
capturing
top level missing await
inner missing await
parallel steps with sanitizers
parallel steps when first has sanitizer
parallel steps when second has sanitizer
parallel steps where only inner tests have sanitizers
2021-11-15 10:20:37 -05:00
test result: FAILED. 0 passed (4 steps); 7 failed (10 steps); 0 ignored; 0 measured; 0 filtered out ([WILDCARD])
2021-10-11 09:45:02 -04:00
error: Test failed