multiparty-meeting/app/src/__tests__/RoomClient.spec.js

9 lines
206 B
JavaScript

import RoomClient from '../RoomClient';
describe('new RoomClient() without parameters throws Error', () =>
{
test('Matches the snapshot', () =>
{
expect(() => new RoomClient()).toThrow(Error);
});
});