ランダムにテストがコケるのを修正 (#7553)
* Test shutdown * Revert "Test shutdown" This reverts commit85182e7dd1
. * Skip beforeShutdown in test * Wait shutdown in test * Revert "Skip beforeShutdown in test" This reverts commit79c33ab536
. * Revert "Revert "Skip beforeShutdown in test"" This reverts commit3423133a13
.
This commit is contained in:
@@ -12,7 +12,7 @@ process.env.NODE_ENV = 'test';
|
||||
|
||||
import * as assert from 'assert';
|
||||
import * as childProcess from 'child_process';
|
||||
import { async, signup, request, post, react, connectStream, launchServer } from './utils';
|
||||
import { async, signup, request, post, react, connectStream, launchServer, shutdownServer } from './utils';
|
||||
|
||||
describe('Mute', () => {
|
||||
let p: childProcess.ChildProcess;
|
||||
@@ -28,8 +28,8 @@ describe('Mute', () => {
|
||||
carol = await signup({ username: 'carol' });
|
||||
}));
|
||||
|
||||
after(() => {
|
||||
p.kill();
|
||||
after(async () => {
|
||||
await shutdownServer(p);
|
||||
});
|
||||
|
||||
it('ミュート作成', async(async () => {
|
||||
|
Reference in New Issue
Block a user