7 lines
132 B
TypeScript
7 lines
132 B
TypeScript
import { expect } from 'chai';
|
|
|
|
describe('webSocket', () => {
|
|
it('should run test', () => {
|
|
expect(true).to.eq(true)
|
|
})
|
|
});
|