Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update test/parallel/test-diagnostics-channel-tracing-channel-promise…
…-run-stores.js

Co-authored-by: Rich Trott <rtrott@gmail.com>
  • Loading branch information
Qard and Trott authored Apr 1, 2023
commit e9a266754cac6f26132564b94c44dfbd757853f6
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ assert.strictEqual(store.getStore(), undefined);
channel.tracePromise(common.mustCall(async () => {
assert.deepStrictEqual(store.getStore(), firstContext);
await setTimeout(1);
// Should _not_ switch to second context as promises don't have an "afer"
// Should _not_ switch to second context as promises don't have an "after"
// point at which to do a runStores.
assert.deepStrictEqual(store.getStore(), firstContext);
}));
Expand Down