Test files linted

This commit is contained in:
Angelos Chalaris
2018-08-03 10:39:26 +03:00
parent 5ef1fab5fd
commit cc7b76d0b3
153 changed files with 754 additions and 463 deletions

View File

@ -19,7 +19,7 @@ test('isPrimitive(true) is primitive', () => {
test('isPrimitive(50) is primitive', () => {
expect(isPrimitive(50)).toBeTruthy();
});
test('isPrimitive(\'Hello\') is primitive', () => {
test("isPrimitive('Hello') is primitive", () => {
expect(isPrimitive('Hello')).toBeTruthy();
});
test('isPrimitive(false) is primitive', () => {
@ -38,5 +38,5 @@ let start = new Date().getTime();
isPrimitive({ a: 123 });
let end = new Date().getTime();
test('isPrimitive({ a: 123 }) takes less than 2s to run', () => {
expect((end - start) < 2000).toBeTruthy();
expect(end - start < 2000).toBeTruthy();
});