Skip to content

Commit

Permalink
test: fix inband tests expectations
Browse files Browse the repository at this point in the history
  • Loading branch information
ChALkeR committed Sep 9, 2024
1 parent 952f88e commit 84631f9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion tests/inband/1.inband.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
test('inband 1', () => {
expect(process.env.EXODUS_TEST_INBAND).toBeTruthy()
expect(globalThis.inband1).toBe(undefined)
expect(globalThis.inband2).toBe(undefined)
globalThis.inband1 = 1
Expand Down
3 changes: 1 addition & 2 deletions tests/inband/2.inband.test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
test('inband 2', () => {
expect(process.env.EXODUS_TEST_INBAND).toBeTruthy()
expect(globalThis.inband1).toBe(1)
expect(globalThis.inband2).toBe(undefined)
globalThis.inband1 = 2
globalThis.inband2 = 2
})

0 comments on commit 84631f9

Please sign in to comment.