Workspaces refactor #86

Merged
norm merged 189 commits from refactor/workspaces into main 2022-08-28 14:46:45 +00:00
3 changed files with 6 additions and 4 deletions
Showing only changes of commit 091ef2e240 - Show all commits

View file

@ -8,7 +8,7 @@
"build": "npm run tsc",
"tsc": "tsc",
"tsd": "tsd",
"jest": "jest",
"jest": "jest --detectOpenHandles",
"test": "npm run jest && npm run tsd"
},
"repository": {

View file

@ -255,8 +255,7 @@ export default class Stream extends EventEmitter<StreamEvents> {
*/
@autobind
public close() {
this.stream.removeEventListener('open', this.onOpen);
this.stream.removeEventListener('message', this.onMessage);
this.stream.close();
}
}

View file

@ -32,12 +32,14 @@ describe('Streaming', () => {
id: 'foo'
});
stream.close();
server.close();
});
/* TODO
test('useChannel with parameters', async () => {
// TODO
});
*/
test('Connection#dispose', async () => {
const server = new WS('wss://misskey.test/streaming');
@ -68,6 +70,7 @@ describe('Streaming', () => {
expect(mainChannelReceived.length).toEqual(0);
stream.close();
server.close();
});