We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15315c6 commit f66b87cCopy full SHA for f66b87c
1 file changed
tests/unit/pages.js
@@ -165,7 +165,11 @@ describe('pages module', () => {
165
.value()
166
167
const diff = difference(nonEnglishPaths, englishPaths)
168
- const failureMessage = `Unmatched non-English pages ${diff.length}:\n - ${diff.join('\n - ')}`
+ const failureMessage = `
169
+Found ${diff.length} non-English pages without a matching English page:\n - ${diff.join('\n - ')}
170
+
171
+Remove them with script/i18n/prune-stale-files.js and commit your changes using "git commit --no-verify".
172
+`
173
expect(diff.length, failureMessage).toBe(0)
174
})
175
0 commit comments