1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 09:46:22 +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 => {
const [input, expected] = testCase;
t.is(markdown.strip(input), expected, `Test for strip() input: ${input} expected: ${expected}`);
const [input, expected] = testCase
t.is(markdown.strip(input), expected, `Test for strip() input: ${input} expected: ${expected}`)
})
})