Skip to content

Commit ca956d6

Browse files
authored
fix(doc): Expect helper is not described correctly (#4370)
1 parent 6566b8c commit ca956d6

11 files changed

+13
-13
lines changed

docs/helpers/Expect.md docs/helpers/ExpectHelper.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
2-
permalink: /helpers/Expect
2+
permalink: /helpers/ExpectHelper
33
editLink: false
44
sidebar: auto
5-
title: Expect
5+
title: ExpectHelper
66
---
77

88
<!-- Generated by documentation.js. Update this documentation by updating the source code. -->
@@ -20,7 +20,7 @@ Zero-configuration when paired with other helpers like REST, Playwright:
2020
{
2121
helpers: {
2222
Playwright: {...},
23-
Expect: {},
23+
ExpectHelper: {},
2424
}
2525
}
2626
```

lib/helper/Expect.js lib/helper/ExpectHelper.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import('chai').then(chai => {
2323
*{
2424
* helpers: {
2525
* Playwright: {...},
26-
* Expect: {},
26+
* ExpectHelper: {},
2727
* }
2828
*}
2929
* ```

test/acceptance/codecept.Playwright.coverage.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ module.exports.config = {
2323
require: '../support/ScreenshotSessionHelper.js',
2424
outputPath: 'test/acceptance/output',
2525
},
26-
Expect: {},
26+
ExpectHelper: {},
2727
},
2828
include: {},
2929
bootstrap: false,

test/acceptance/codecept.Playwright.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ module.exports.config = {
2323
require: '../support/ScreenshotSessionHelper.js',
2424
outputPath: 'test/acceptance/output',
2525
},
26-
Expect: {},
26+
ExpectHelper: {},
2727
},
2828
include: {},
2929
bootstrap: false,

test/acceptance/codecept.Playwright.retryTo.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ module.exports.config = {
2323
require: '../support/ScreenshotSessionHelper.js',
2424
outputPath: 'test/acceptance/output',
2525
},
26-
Expect: {},
26+
ExpectHelper: {},
2727
},
2828
include: {},
2929
bootstrap: false,

test/acceptance/codecept.Puppeteer.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ module.exports.config = {
1919
require: '../support/ScreenshotSessionHelper.js',
2020
outputPath: './output',
2121
},
22-
Expect: {},
22+
ExpectHelper: {},
2323
},
2424
include: {},
2525
bootstrap: false,

test/acceptance/codecept.Testcafe.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ module.exports.config = {
99
url: TestHelper.siteUrl(),
1010
show: true,
1111
},
12-
Expect: {},
12+
ExpectHelper: {},
1313
},
1414
include: {},
1515
bootstrap: false,

test/acceptance/codecept.WebDriver.devtools.coverage.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ module.exports.config = {
2121
require: '../support/ScreenshotSessionHelper.js',
2222
outputPath: './output',
2323
},
24-
Expect: {},
24+
ExpectHelper: {},
2525
},
2626
include: {},
2727
mocha: {},

test/acceptance/codecept.WebDriver.devtools.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ module.exports.config = {
2121
require: '../support/ScreenshotSessionHelper.js',
2222
outputPath: './output',
2323
},
24-
Expect: {},
24+
ExpectHelper: {},
2525
},
2626
include: {},
2727
bootstrap: async () => new Promise(done => {

test/acceptance/codecept.WebDriver.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ module.exports.config = {
2121
require: '../support/ScreenshotSessionHelper.js',
2222
outputPath: './output',
2323
},
24-
Expect: {},
24+
ExpectHelper: {},
2525
},
2626
include: {},
2727
bootstrap: async () => new Promise(done => {

test/helper/Expect_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import('chai').then(chai => {
55
expect = chai.expect;
66
});
77

8-
const ExpectHelper = require('../../lib/helper/Expect');
8+
const ExpectHelper = require('../../lib/helper/ExpectHelper');
99

1010
global.codeceptjs = require('../../lib');
1111

0 commit comments

Comments
 (0)