Skip to content

Commit

Permalink
conditional test
Browse files Browse the repository at this point in the history
  • Loading branch information
stevensJourney committed Feb 10, 2025
1 parent a1a1fc8 commit a43d694
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/web/tests/uploads.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ describe('CRUD Uploads', () => {
});

afterEach(async () => {
connectedUtils.remote.streamController?.close();
await connectedUtils.powersync.disconnectAndClear();
await connectedUtils.powersync.close();
connectedUtils?.remote.streamController?.close();
await connectedUtils?.powersync.disconnectAndClear();
await connectedUtils?.powersync.close();
});

it('should warn for missing upload operations in uploadData', async () => {
Expand Down

0 comments on commit a43d694

Please sign in to comment.