Skip to content

Commit

Permalink
Merge branch 'chore-move-driver-tests-into-parent' into isolated-runn…
Browse files Browse the repository at this point in the history
…er-fixes
  • Loading branch information
kuceb committed Jun 11, 2020
2 parents f5bc2ed + e3257bf commit 5597ec4
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 46 deletions.
1 change: 0 additions & 1 deletion packages/driver/cypress/integration/e2e/focus_blur_spec.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/// <reference path="../../../../../cli/types/index.d.ts" />
/* eslint arrow-body-style:'off' */

/**
Expand Down
2 changes: 1 addition & 1 deletion packages/driver/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/// <reference path="../../cli/types/cypress.d.ts" />
/// <reference path="../../cli/types/index.d.ts" />
/// <reference path="../ts/index.d.ts" />
export const $Cypress: Cypress.Cypress

Expand Down
33 changes: 0 additions & 33 deletions packages/driver/src/config/lodash.d.ts

This file was deleted.

8 changes: 6 additions & 2 deletions packages/driver/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@
"allowSyntheticDefaultImports": true,
"outDir": "dist",
"esModuleInterop": true,
"noErrorTruncation": true
}
"noErrorTruncation": true,
"types": []
},
"exclude": [
"dist"
]
}
File renamed without changes.
5 changes: 0 additions & 5 deletions packages/runner/jsconfig.json

This file was deleted.

5 changes: 3 additions & 2 deletions packages/runner/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,15 @@
// "baseUrl": "../", /* Base directory to resolve non-absolute module names. */
// "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
// "rootDirs": ["../driver/src"], /* List of root folders whose combined content represents the structure of the project at runtime. */
// "types": [], /* Type declaration files to be included in compilation. */
"types": [], /* Type declaration files to be included in compilation. */
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"noErrorTruncation": true,
"experimentalDecorators": true
// "noResolve": true
},
"exclude": [
"dist"
"dist",
"test"
]
}
4 changes: 2 additions & 2 deletions packages/server/test/e2e/8_error_ui_spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ describe('e2e error ui', function () {
e2e.it('displays correct UI for errors', {
spec: 'various_failures_spec.js',
expectedExitCode: VARIOUS_FAILURES_EXPECTED_FAILURES,
timeout: 180000, // 3 minutes
timeout: 240000, // 4 minutes
noTypeScript: true,
onRun (exec) {
return exec().then(verifyPassedAndFailedAreSame(VARIOUS_FAILURES_EXPECTED_FAILURES))
Expand All @@ -44,7 +44,7 @@ describe('e2e error ui', function () {
e2e.it('displays correct UI for errors in custom commands', {
spec: 'various_failures_custom_commands_spec.js',
expectedExitCode: VARIOUS_FAILURES_EXPECTED_FAILURES,
timeout: 180000, // 3 minutes
timeout: 240000, // 4 minutes
noTypeScript: true,
onRun (exec) {
return exec().then(verifyPassedAndFailedAreSame(VARIOUS_FAILURES_EXPECTED_FAILURES))
Expand Down

0 comments on commit 5597ec4

Please sign in to comment.