mirror of
https://github.com/matrix-org/matrix-rust-sdk.git
synced 2026-05-15 11:36:07 -04:00
`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).
8 lines
207 B
JavaScript
8 lines
207 B
JavaScript
const { DecryptedRoomEvent } = require('../');
|
|
|
|
describe(DecryptedRoomEvent.name, () => {
|
|
test('cannot be instantiated', () => {
|
|
expect(() => { new DecryptedRoomEvent() }).toThrow();
|
|
});
|
|
});
|