Skip to content

Commit e2057bf

Browse files
authored
Merge pull request goldbergyoni#107 from dkarski/patch-2
Removed unneeded `.only()`
2 parents 052f7fe + fc290d3 commit e2057bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,7 @@ expect(errorWeExceptFor).not.to.be.null;
606606
### :clap: Doing It Right Example: A human-readable expectation that could be understood easily, maybe even by QA or technical PM
607607

608608
```javascript
609-
it.only("When no product name, it throws error 400", async() => {
609+
it("When no product name, it throws error 400", async() => {
610610
await expect(addNewProduct({})).to.eventually.throw(AppError).with.property('code', "InvalidInput");
611611
});
612612

0 commit comments

Comments
 (0)