Files
matrix-rust-sdk/bindings/matrix-sdk-crypto-nodejs/tests/responses.test.js
Ivan Enderlin 8db58986fb chore(bindings): Move crypto-nodejs and crypto-js into the bindings/ directory.
`matrix-sdk-crypto-nodejs` and `matrix-sdk-crypto-js` are no longer
default members of the Cargo virtual workspace. The Github Actions
workflows for the bindings now live in a `bindings_ci.yml` files
(ideally, it should be in a subdirectory,
`.github/workflows/bindings/ci.yml` but it doesn't work).
2022-06-22 11:54:49 +02:00

8 lines
207 B
JavaScript

const { DecryptedRoomEvent } = require('../');
describe(DecryptedRoomEvent.name, () => {
test('cannot be instantiated', () => {
expect(() => { new DecryptedRoomEvent() }).toThrow();
});
});