Skip to content

Commit fc290d3

Browse files
authored
Removed unneeded .only()
running a single spec isn't needed in this an example case.
1 parent 243fb90 commit fc290d3

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
@@ -650,7 +650,7 @@ expect(errorWeExceptFor).not.to.be.null;
650650
### :clap: Doing It Right Example: A human-readable expectation that could be understood easily, maybe even by QA or technical PM
651651

652652
```javascript
653-
it.only("When no product name, it throws error 400", async() => {
653+
it("When no product name, it throws error 400", async() => {
654654
await expect(addNewProduct({})).to.eventually.throw(AppError).with.property('code', "InvalidInput");
655655
});
656656

0 commit comments

Comments
 (0)