We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a7a6348 + aa0d43f commit 9c19736Copy full SHA for 9c19736
1 file changed
test/rules-test.js
@@ -15,8 +15,10 @@ function testRules() {
15
return
16
}
17
18
- const lines = fs.readFileSync(path.join(rulesDir, file), { encoding: 'utf-8' }).split('\n')
19
- runAssertions(buildData(lines))
+ it(file.slice(0, -5).split('_').join(' '), () => {
+ const lines = fs.readFileSync(path.join(rulesDir, file), { encoding: 'utf-8' }).split('\n')
20
+ runAssertions(buildData(lines))
21
+ })
22
})
23
24
0 commit comments