mirror of
https://github.com/inaturalist/iNaturalistReactNative.git
synced 2026-05-04 21:53:59 -04:00
* Bump detox * Update detox * Disable one test for now * Bump detox * Increase test timeouts * Collect more logs * Increase run timeout * Comment * Increase timeout * Replace password autofill workaround * Move workaround after launchApp * Upgrade github actions workflows * Forgot one action * Update test.yml * Testing concurrency * Use concurrency for e2e as well * Remove previous concurrency code * Testing different Slack action * Change slack msg * Try different msg * Revert "Try different msg" This reverts commitddaad331d1. * Revert "Change slack msg" This reverts commit852204b074. * Revert "Testing different Slack action" This reverts commitfb072e65e3. * Testing some more notify * Testing notification * Revert "Testing notification" This reverts commit974dfcb32f. * Revert "Testing some more notify" This reverts commit39b3d668e2.
12 lines
346 B
JavaScript
12 lines
346 B
JavaScript
module.exports = {
|
|
maxWorkers: 1,
|
|
testTimeout: 900000,
|
|
rootDir: "..",
|
|
testMatch: ["<rootDir>/e2e/**/*.e2e.js"],
|
|
verbose: true,
|
|
reporters: ["detox/runners/jest/reporter"],
|
|
globalSetup: "detox/runners/jest/globalSetup",
|
|
globalTeardown: "detox/runners/jest/globalTeardown",
|
|
testEnvironment: "detox/runners/jest/testEnvironment"
|
|
};
|