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

@ -10,7 +10,7 @@ test('Number(toSafeInteger(3.2)) is a number', () => {
test('Converts a value to a safe integer', () => {
expect(toSafeInteger(3.2)).toBe(3);
});
test('toSafeInteger(\'4.2\') returns 4', () => {
test("toSafeInteger('4.2') returns 4", () => {
expect(toSafeInteger('4.2')).toBe(4);
});
test('toSafeInteger(4.6) returns 5', () => {
@ -22,7 +22,7 @@ test('toSafeInteger([]) returns 0', () => {
test('isNaN(toSafeInteger([1.5, 3124])) is true', () => {
expect(isNaN(toSafeInteger([1.5, 3124]))).toBeTruthy();
});
test('isNaN(toSafeInteger(\'string\')) is true', () => {
test("isNaN(toSafeInteger('string')) is true", () => {
expect(isNaN(toSafeInteger('string'))).toBeTruthy();
});
test('isNaN(toSafeInteger({})) is true', () => {
@ -38,5 +38,5 @@ let start = new Date().getTime();
toSafeInteger(3.2);
let end = new Date().getTime();
test('toSafeInteger(3.2) takes less than 2s to run', () => {
expect((end - start) < 2000).toBeTruthy();
expect(end - start < 2000).toBeTruthy();
});