Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Chris Breiding <[email protected]>
  • Loading branch information
Blue F and chrisbreiding authored Oct 25, 2021
1 parent 6601c42 commit 50555f5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions packages/data-context/test/unit/data-context.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ const makeDataContext = (options) => {

describe('@packages/data-context', () => {
describe('initializeData', () => {
it('should initialize', async () => {
it('initializes', async () => {
const context = makeDataContext()

await context.initializeData()
snapshot(context)
})

it('should skip first wizard step when given a testingType', async () => {
it('skips first wizard step when given a testingType', async () => {
const context = makeDataContext({
launchArgs: {
testingType: 'e2e',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const { $, _ } = Cypress

describe('src/cy/commands/assertions', { retries: 2 }, () => {
describe('src/cy/commands/assertions', () => {
before(() => {
cy
.visit('/fixtures/jquery.html')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const helpers = require('../../support/helpers')

const { _, Promise, $ } = Cypress

describe('src/cy/commands/navigation', { retries: 2 }, () => {
describe('src/cy/commands/navigation', () => {
context('#reload', () => {
before(() => {
cy
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const { _, Promise } = Cypress

const RESPONSE_TIMEOUT = 22222

describe('src/cy/commands/request', { retries: 2 }, () => {
describe('src/cy/commands/request', () => {
context('#request', {
responseTimeout: RESPONSE_TIMEOUT,
}, () => {
Expand Down

0 comments on commit 50555f5

Please sign in to comment.