Skip to content

Commit

Permalink
Update jest and increase default test timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason Rogers committed Aug 31, 2018
1 parent fbacb15 commit f56fba5
Show file tree
Hide file tree
Showing 5 changed files with 3,912 additions and 1,578 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"no-unused-vars": [
"error",
{
"argsIgnorePattern": "params" // igore only these for the time being
"argsIgnorePattern": "params"
}
],
"prettier/prettier": ["warn", {
Expand Down
3 changes: 3 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
setupTestFrameworkScriptFile: './jest.setup.js',
};
4 changes: 4 additions & 0 deletions jest.setup.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/* eslint-disable no-undef */
// Set a higher timeout than the default, due to some changes coming in
// Stardog 6+, in order to avoid false failures.
jest.setTimeout(30000);
Loading

0 comments on commit f56fba5

Please sign in to comment.