Skip to content

Commit b2a99d0

Browse files
committed
resolve conflicts.
1 parent ed2e259 commit b2a99d0

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

packages/driver/src/cy/assertions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ export const create = (Cypress, cy) => {
514514
},
515515

516516
assert (...args) {
517-
// if we've temporarily overriden assertions
517+
// if we've temporarily overridden assertions
518518
// then just bail early with this function
519519
const fn = cy.state('overrideAssert') || assertFn
520520

packages/driver/src/cy/retries.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ export const create = (Cypress, state, timeout, clearTimeout, whenStable, finish
9999
// are not and the retry code is happening between
100100
// runnables which is bad likely due to the issue below
101101
//
102-
// bug in bluebird with not propagating cancelations
102+
// bug in bluebird with not propagating cancellations
103103
// fast enough in a series of promises
104104
// https://github.com/petkaantonov/bluebird/issues/1424
105105
return state('canceled') || state('error') || runnableHasChanged()

packages/driver/src/cypress/cy.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import $dom from '../dom'
1010
import $utils from './utils'
1111
import $errUtils from './error_utils'
1212
import $stackUtils from './stack_utils'
13+
1314
import { create as createChai, IChai } from '../cy/chai'
1415
import { create as createXhr, IXhr } from '../cy/xhrs'
1516
import { create as createJQuery, IJQuery } from '../cy/jquery'
@@ -33,8 +34,6 @@ import { $Command } from './command'
3334
import $CommandQueue from './command_queue'
3435
import { initVideoRecorder } from '../cy/video-recorder'
3536
import { TestConfigOverride } from '../cy/testConfigOverrides'
36-
import debugFn from 'debug'
37-
import { registerFetch } from 'unfetch'
3837

3938
const debugErrors = debugFn('cypress:driver:errors')
4039

0 commit comments

Comments
 (0)