Skip to content

Commit 9785fc6

Browse files
committed
fix pending nursery integration test
1 parent 7924280 commit 9785fc6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/runner/integration/pending-nursery.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,9 @@ async function test() {
139139
assertEquals(s1Count, 1);
140140
assertEquals(s2Count, 0);
141141

142-
await runtime1.dispose();
142+
// Have to dispose in reverse order to match frame order
143143
await runtime2.dispose();
144+
await runtime1.dispose();
144145
}
145146

146147
async function runTest() {

0 commit comments

Comments
 (0)