mirror of
https://github.com/ivabus/gui
synced 2025-04-23 14:07:14 +03:00
config e2e (#603)
This commit is contained in:
parent
f12850141c
commit
2aabd5b1de
2 changed files with 7 additions and 5 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "tea",
|
||||
"version": "0.2.7",
|
||||
"version": "0.2.8",
|
||||
"private": true,
|
||||
"description": "tea gui app",
|
||||
"author": "tea.xyz",
|
||||
|
|
|
@ -20,7 +20,7 @@ export const config: Options.Testrunner = {
|
|||
exclude: [
|
||||
// 'path/to/excluded/files'
|
||||
],
|
||||
maxInstances: 10,
|
||||
maxInstances: 1,
|
||||
capabilities: [
|
||||
{
|
||||
// capabilities for local browser web tests
|
||||
|
@ -32,7 +32,7 @@ export const config: Options.Testrunner = {
|
|||
baseUrl: "http://localhost",
|
||||
waitforTimeout: 10000,
|
||||
connectionRetryTimeout: 120000,
|
||||
connectionRetryCount: 3,
|
||||
connectionRetryCount: 5,
|
||||
services: [
|
||||
[
|
||||
"electron",
|
||||
|
@ -52,6 +52,8 @@ export const config: Options.Testrunner = {
|
|||
reporters: ["spec"],
|
||||
mochaOpts: {
|
||||
ui: "bdd",
|
||||
timeout: 60000
|
||||
}
|
||||
timeout: 120000
|
||||
},
|
||||
specFileRetries: 3,
|
||||
specFileRetriesDelay: 5
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue