1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-17 11:41:44 +00:00

[Lint] Remove semicolons

This commit is contained in:
asmsuechan
2017-05-17 15:05:05 +09:00
parent b88b1065ee
commit 930b58d2a8

View File

@@ -40,7 +40,7 @@ test(t => {
] ]
testCases.forEach(testCase => { testCases.forEach(testCase => {
const [input, expected] = testCase; const [input, expected] = testCase
t.is(markdown.strip(input), expected, `Test for strip() input: ${input} expected: ${expected}`); t.is(markdown.strip(input), expected, `Test for strip() input: ${input} expected: ${expected}`)
}) })
}) })