From 80072b4e83654136f96ece66146006dcd3c21304 Mon Sep 17 00:00:00 2001 From: Yuta Hiroto Date: Sat, 8 Jun 2019 10:12:08 +0200 Subject: [PATCH] test(options): set jest.setTimeout --- test/options.test.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/options.test.js b/test/options.test.js index 11e118718b..7e59879bb0 100644 --- a/test/options.test.js +++ b/test/options.test.js @@ -10,6 +10,8 @@ const SockJSServer = require('../lib/servers/SockJSServer'); const config = require('./fixtures/simple-config/webpack.config'); describe('options', () => { + jest.setTimeout(20000); + it('should match properties and errorMessage', () => { const properties = Object.keys(options.properties); const messages = Object.keys(options.errorMessage.properties);