Files
mattermost-mobile/detox/e2e/config.json
Joseph Baylon 1d9c371bfb Detox/E2E: Migrate e2e javascript to typescript (#6059)
* Detox/E2E: Migrate to typescript

* Add jest.config.js

* Add moduleMapper to config.json

* Add cookie jar to axios client, fix tsconfig.json and default_config.json

* Take keyboard into consideration; clean test for now for this migration PR

* Revert changes on path_builder

* Attempt to fix dep issues

* Update detox dep

* Added missing @type dev dependencies

* Fix dep order

* Fix unit tests

* Added dynamic year to email.ts
2022-03-17 17:35:26 -07:00

17 lines
397 B
JSON

{
"setupFilesAfterEnv": ["./test/setup.ts"],
"maxWorkers": 1,
"testEnvironment": "./environment",
"testRunner": "jest-circus/runner",
"testTimeout": 120000,
"testRegex": "\\.e2e\\.ts$",
"transform": {
"\\.ts?$": "ts-jest"
},
"reporters": ["detox/runners/jest/streamlineReporter"],
"verbose": true,
"moduleNameMapper": {
"^@support/(.*)": "<rootDir>/support/$1"
}
}