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.
.only()
1 parent 243fb90 commit fc290d3Copy full SHA for fc290d3
readme.md
@@ -650,7 +650,7 @@ expect(errorWeExceptFor).not.to.be.null;
650
### :clap: Doing It Right Example: A human-readable expectation that could be understood easily, maybe even by QA or technical PM
651
652
```javascript
653
-it.only("When no product name, it throws error 400", async() => {
+it("When no product name, it throws error 400", async() => {
654
await expect(addNewProduct({})).to.eventually.throw(AppError).with.property('code', "InvalidInput");
655
});
656
0 commit comments