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

@ -12,7 +12,7 @@ test('When n is odd, times by 3 and add 1', () => {
});
test('Eventually reaches 1', () => {
let n = 9;
while(true) {
while (true) {
if (n === 1) {
expect(n).toBe(1);
break;