This commit is contained in:
syuilo 2019-01-25 19:37:45 +09:00
parent 42cd7c8a75
commit 4398651841
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69
3 changed files with 5 additions and 8 deletions

View file

@ -13,7 +13,6 @@ import * as fs from 'fs';
import * as assert from 'chai';
import { async, _signup, _request, _uploadFile, _post, _react, resetDb } from './utils';
assert.use(require('chai-http'));
const expect = assert.expect;
//#region process

View file

@ -10,12 +10,9 @@
import * as http from 'http';
import * as WebSocket from 'ws';
import * as assert from 'chai';
import * as assert from 'assert';
import { _signup, _request, _uploadFile, _post, _react, resetDb } from './utils';
assert.use(require('chai-http'));
const expect = assert.expect;
//#region process
Error.stackTraceLimit = Infinity;
@ -59,7 +56,7 @@ describe('Streaming', () => {
const msg = JSON.parse(data.toString());
if (msg.type == 'channel' && msg.body.id == 'a') {
if (msg.body.type == 'note') {
expect(msg.body.body.text).eql(post.text);
assert.deepStrictEqual(msg.body.body.text, post.text);
ws.close();
done();
}
@ -93,7 +90,7 @@ describe('Streaming', () => {
const msg = JSON.parse(data.toString());
if (msg.type == 'channel' && msg.body.id == 'a') {
if (msg.body.type == 'mention') {
expect(msg.body.body.text).eql(aliceNote.text);
assert.deepStrictEqual(msg.body.body.text, aliceNote.text);
ws.close();
done();
}
@ -127,7 +124,7 @@ describe('Streaming', () => {
const msg = JSON.parse(data.toString());
if (msg.type == 'channel' && msg.body.id == 'a') {
if (msg.body.type == 'renote') {
expect(msg.body.body.renoteId).eql(bobNote.id);
assert.deepStrictEqual(msg.body.body.renoteId, bobNote.id);
ws.close();
done();
}

View file

@ -1,6 +1,7 @@
import * as fs from 'fs';
import * as http from 'http';
import * as assert from 'chai';
assert.use(require('chai-http'));
export const async = (fn: Function) => (done: Function) => {
fn().then(() => {