Previous yarn test --since failed to catch deps (#3007)

pull/3011/head
Yorke Rhodes 12 months ago committed by GitHub
parent 9f2c7ce7c4
commit 98f7e21b99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      package.json
  2. 2
      typescript/helloworld/src/test/helloworld.test.ts

@ -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",

@ -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 () => {

Loading…
Cancel
Save