Skip to content

Commit 50555f5

Browse files
Blue Fchrisbreiding
Blue F
andauthored
Apply suggestions from code review
Co-authored-by: Chris Breiding <chrisbreiding@users.noreply.github.com>
1 parent 6601c42 commit 50555f5

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

packages/data-context/test/unit/data-context.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ const makeDataContext = (options) => {
1919

2020
describe('@packages/data-context', () => {
2121
describe('initializeData', () => {
22-
it('should initialize', async () => {
22+
it('initializes', async () => {
2323
const context = makeDataContext()
2424

2525
await context.initializeData()
2626
snapshot(context)
2727
})
2828

29-
it('should skip first wizard step when given a testingType', async () => {
29+
it('skips first wizard step when given a testingType', async () => {
3030
const context = makeDataContext({
3131
launchArgs: {
3232
testingType: 'e2e',

packages/driver/cypress/integration/commands/assertions_spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const { $, _ } = Cypress
22

3-
describe('src/cy/commands/assertions', { retries: 2 }, () => {
3+
describe('src/cy/commands/assertions', () => {
44
before(() => {
55
cy
66
.visit('/fixtures/jquery.html')

packages/driver/cypress/integration/commands/navigation_spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const helpers = require('../../support/helpers')
44

55
const { _, Promise, $ } = Cypress
66

7-
describe('src/cy/commands/navigation', { retries: 2 }, () => {
7+
describe('src/cy/commands/navigation', () => {
88
context('#reload', () => {
99
before(() => {
1010
cy

packages/driver/cypress/integration/commands/request_spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const { _, Promise } = Cypress
33

44
const RESPONSE_TIMEOUT = 22222
55

6-
describe('src/cy/commands/request', { retries: 2 }, () => {
6+
describe('src/cy/commands/request', () => {
77
context('#request', {
88
responseTimeout: RESPONSE_TIMEOUT,
99
}, () => {

0 commit comments

Comments
 (0)