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

@ -4,7 +4,7 @@ const sample = require('./sample.js');
test('sample is a Function', () => {
expect(sample).toBeInstanceOf(Function);
});
const arr = [3,7,9,11];
const arr = [3, 7, 9, 11];
test('Returns a random element from the array', () => {
expect(arr.includes(sample(arr))).toBeTruthy();
});