Skip to content

Commit

Permalink
chore: remove onLog e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
russellwheatley committed Jan 22, 2025
1 parent 4d049d4 commit 45d9bcb
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions packages/app/e2e/app.e2e.js
Original file line number Diff line number Diff line change
Expand Up @@ -312,16 +312,5 @@ describe('modular', function () {
e.message.should.equal('registerVersion is only supported on Web');
}
});

it('onLog is not supported on react-native', async function () {
const { onLog } = modular;

try {
await onLog(() => {}, {});
throw new Error('Should have rejected incorrect onLog');
} catch (e) {
e.message.should.equal('onLog is only supported on Web');
}
});
});
});

0 comments on commit 45d9bcb

Please sign in to comment.