mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-13 15:38:59 +00:00
lint: Correct missing semicolons
This commit is contained in:
parent
2d553417b4
commit
06cae45ed9
1 changed files with 4 additions and 4 deletions
|
|
@ -14,7 +14,7 @@ describe('shops', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('does not duplicate identifiers', () => {
|
it('does not duplicate identifiers', () => {
|
||||||
let identifiers = Array.from(new Set(shopCategories.map(cat => cat.identifier)))
|
let identifiers = Array.from(new Set(shopCategories.map(cat => cat.identifier)));
|
||||||
|
|
||||||
expect(identifiers.length).to.eql(shopCategories.length);
|
expect(identifiers.length).to.eql(shopCategories.length);
|
||||||
});
|
});
|
||||||
|
|
@ -44,7 +44,7 @@ describe('shops', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('does not duplicate identifiers', () => {
|
it('does not duplicate identifiers', () => {
|
||||||
let identifiers = Array.from(new Set(shopCategories.map(cat => cat.identifier)))
|
let identifiers = Array.from(new Set(shopCategories.map(cat => cat.identifier)));
|
||||||
|
|
||||||
expect(identifiers.length).to.eql(shopCategories.length);
|
expect(identifiers.length).to.eql(shopCategories.length);
|
||||||
});
|
});
|
||||||
|
|
@ -68,7 +68,7 @@ describe('shops', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('does not duplicate identifiers', () => {
|
it('does not duplicate identifiers', () => {
|
||||||
let identifiers = Array.from(new Set(shopCategories.map(cat => cat.identifier)))
|
let identifiers = Array.from(new Set(shopCategories.map(cat => cat.identifier)));
|
||||||
|
|
||||||
expect(identifiers.length).to.eql(shopCategories.length);
|
expect(identifiers.length).to.eql(shopCategories.length);
|
||||||
});
|
});
|
||||||
|
|
@ -92,7 +92,7 @@ describe('shops', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('does not duplicate identifiers', () => {
|
it('does not duplicate identifiers', () => {
|
||||||
let identifiers = Array.from(new Set(shopCategories.map(cat => cat.identifier)))
|
let identifiers = Array.from(new Set(shopCategories.map(cat => cat.identifier)));
|
||||||
|
|
||||||
expect(identifiers.length).to.eql(shopCategories.length);
|
expect(identifiers.length).to.eql(shopCategories.length);
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue