Use Prettier JS (#5017)

* Adds prettier

* Run lint before tests
This commit is contained in:
Florent Vilmart
2018-09-01 13:58:06 -04:00
committed by GitHub
parent 189cd259ee
commit d83a0b6808
240 changed files with 41098 additions and 29020 deletions

View File

@@ -27,7 +27,9 @@ describe('randomString', () => {
});
it('returns unique results', () => {
expect(givesUniqueResults(() => cryptoUtils.randomString(10), 100)).toBe(true);
expect(givesUniqueResults(() => cryptoUtils.randomString(10), 100)).toBe(
true
);
});
});
@@ -50,7 +52,9 @@ describe('randomHexString', () => {
});
it('returns unique results', () => {
expect(givesUniqueResults(() => cryptoUtils.randomHexString(20), 100)).toBe(true);
expect(givesUniqueResults(() => cryptoUtils.randomHexString(20), 100)).toBe(
true
);
});
});