We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1618c11 commit 499a67eCopy full SHA for 499a67e
testing/test-setup/src/lib/extend/path.matcher.ts
@@ -148,13 +148,13 @@ expect.extend({
148
const pass = normalizedReceived.endsWith(normalizedExpected);
149
return pass
150
? {
151
- message: () => `expected ${actual} not to ends with path ${expected}`,
+ message: () => `expected ${actual} not to end with path ${expected}`,
152
pass: true,
153
actual,
154
expected,
155
}
156
: {
157
- message: () => `expected ${actual} to ends with path ${expected}`,
+ message: () => `expected ${actual} to end with path ${expected}`,
158
pass: false,
159
160
0 commit comments