We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff9c38d commit 4361efcCopy full SHA for 4361efc
README.md
@@ -2,22 +2,28 @@
2
3
Expect helper for I.expect calls
4
5
-Zero-configuration when paired with other helpers like REST, Playwright:
+Installation:
6
+
7
+```sh
8
+npm i @codeceptjs/expect-helper --save
9
+```
10
11
+Enable it inside codecept conf file:
12
13
```js
-// inside codecept.conf.js
14
+// inside codecept.conf.js/ts
15
{
16
helpers: {
17
Playwright: {...},
- Expect: {},
18
+ Expect: {
19
+ require: '@codeceptjs/expect-helper'
20
+ },
21
}
22
23
```
24
25
## Usage
26
-## Methods
-
27
### I.expectEqual
28
29
Asserts that the actual value is equal to the expected value.
0 commit comments