Missing semicolon

This commit is contained in:
CJ Patoilo 2016-12-01 08:11:19 -03:00
parent e6121eb624
commit 551860ffcd
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ const packages = [
test(`Name should be equal "${npm.name}"`, t => {
packages.map((referenceValue, referenceIndex) => {
packages.map((compareValue, compareIndex) => {
if (compareValue.name.match('/')) compareValue.name = compareValue.name.split('/')[1]
if (compareValue.name.match('/')) compareValue.name = compareValue.name.split('/')[1];
if (referenceIndex !== compareIndex) t.is(referenceValue.name, compareValue.name);
});
});