mirror of
https://github.com/matrix-org/matrix-rust-sdk.git
synced 2026-05-15 11:36:07 -04:00
10 lines
228 B
JavaScript
10 lines
228 B
JavaScript
const { DecryptedRoomEvent } = require("../");
|
|
|
|
describe(DecryptedRoomEvent.name, () => {
|
|
test("cannot be instantiated", () => {
|
|
expect(() => {
|
|
new DecryptedRoomEvent();
|
|
}).toThrow();
|
|
});
|
|
});
|