Prettier code cleanup for .ts files

See #182
This commit is contained in:
Michael Shamoon
2022-03-11 10:53:32 -08:00
parent f8c8161a3e
commit f34202a82a
159 changed files with 3882 additions and 2716 deletions

View File

@@ -1,16 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { TestBed } from '@angular/core/testing'
import { ToastService } from './toast.service';
import { ToastService } from './toast.service'
describe('ToastService', () => {
let service: ToastService;
let service: ToastService
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(ToastService);
});
TestBed.configureTestingModule({})
service = TestBed.inject(ToastService)
})
it('should be created', () => {
expect(service).toBeTruthy();
});
});
expect(service).toBeTruthy()
})
})