Skip to content

Commit

Permalink
test(Runtime Integration Tests): Fixed timeout setting for oracle.rec…
Browse files Browse the repository at this point in the history
…laimStake() test.

Signed-off-by: Dominik Roth <dominik@composable.finance>

test(Runtime Integration Tests): Made crowdloan rewards tx tests being able to work multiple times on the same chain.
Upped slow time configuration for mocha.

Signed-off-by: Dominik Roth <dominik@composable.finance>

test(Runtime Integration Tests): Bonded Finance TX Checks updated & Parallelization.

Signed-off-by: Dominik Roth <dominik@composable.finance>

test(Runtime Integration Tests): W.I.P. Parallelization Integration.

Signed-off-by: Dominik Roth <dominik@composable.finance>
  • Loading branch information
Dominik Roth committed Jan 28, 2022
1 parent 089aeba commit 8546b44
Show file tree
Hide file tree
Showing 37 changed files with 5,723 additions and 1,797 deletions.
15 changes: 9 additions & 6 deletions integration-tests/runtime-tests/.mocharc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"diff": true,
"inline-diffs": true,
"extension": ["js", "cjs", "mjs"],
"package": "./package.json",
"reporter": "mochawesome",
Expand All @@ -10,13 +11,15 @@
"html": true,
"json": true
},
"slow": 75,
"slow": 30000,
"timeout": 2000,
"retries": 0,
"retries": 3,
"ui": "bdd",
"watch-files": ["src/**/*.js", "src/**/*.ts"],
"watch-ignore": ["lib/vendor"],
"require": "src/utils/testSetup.js",
"trace-warnings": true,
"watch-files": ["test/**/*.js", "test/**/*.ts"],
"watch-ignore": ["lib/vendor", "test/**/*.d.ts"],
"require": ["mochawesome/register", "test/utils/testSetup.ts"],
"full-trace": true,
"parallel": false
"parallel": true,
"recursive": true
}
Loading

0 comments on commit 8546b44

Please sign in to comment.