Skip to content

Commit

Permalink
Previous yarn test --since failed to catch deps (#3007)
Browse files Browse the repository at this point in the history
  • Loading branch information
yorhodes authored Nov 30, 2023
1 parent 9f2c7ce commit 98f7e21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"clean": "yarn workspaces foreach --all --parallel run clean",
"prettier": "yarn workspaces foreach --since --parallel run prettier",
"lint": "yarn workspaces foreach --since --parallel run lint",
"test": "yarn workspaces foreach --since --parallel run test",
"test": "yarn workspaces foreach --all --parallel run test",
"coverage": "yarn workspaces foreach --since --parallel run coverage",
"version:prepare": "yarn changeset version && yarn workspaces foreach --all --parallel run version:update && yarn install --no-immutable",
"version:check": "yarn changeset status",
Expand Down
2 changes: 1 addition & 1 deletion typescript/helloworld/src/test/helloworld.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ describe('HelloWorld', async () => {
local.sendHelloWorld(remoteDomain, body, {
value: 0,
}),
).to.be.revertedWith('StaticProtocolFee: insufficient protocol fee');
).to.be.revertedWith('ProtocolFee: insufficient protocol fee');
});

it('handles a message', async () => {
Expand Down

0 comments on commit 98f7e21

Please sign in to comment.