22 lines
552 B
JavaScript
22 lines
552 B
JavaScript
module.exports = {
|
|
require: [
|
|
'ts-node/register',
|
|
'./test/Base.ts'
|
|
],
|
|
exit: true,
|
|
timeout: 999999,
|
|
'preserve-symlinks': true,
|
|
spec: [
|
|
'./test/cases/http.test.ts',
|
|
'./test/cases/httpJSON.test.ts',
|
|
'./test/cases/ws.test.ts',
|
|
'./test/cases/wsJSON.test.ts',
|
|
'./test/cases/inner.test.ts',
|
|
'./test/cases/inputJSON.test.ts',
|
|
'./test/cases/inputBuffer.test.ts',
|
|
],
|
|
// parallel: false,
|
|
|
|
// 'expose-gc': true,
|
|
// fgrep: 'throw type error in server'
|
|
} |