Increase timeout in ember tests

no issue
- increases individual test timeout from 5sec to 15sec

It seems Travis is occasionally _very_ slow and will timeout on heavier acceptance tests resulting in random failures. Hopefully this will reduce the number of random test failures we see.
This commit is contained in:
Kevin Ansfield 2015-10-20 14:10:07 +01:00
parent 917f1b32f5
commit 49c7b952bd

View File

@ -5,7 +5,7 @@ setResolver(resolver);
/* jshint ignore:start */
mocha.setup({
timeout: 5000,
timeout: 15000,
slow: 500
});
/* jshint ignore:end */