Prettier code cleanup for .ts files

See #182
This commit is contained in:
Michael Shamoon
2022-03-11 10:53:32 -08:00
parent d56c9dc94b
commit bd4a705769
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 { CsrfInterceptor } from './csrf.interceptor';
import { CsrfInterceptor } from './csrf.interceptor'
describe('CsrfInterceptor', () => {
beforeEach(() => TestBed.configureTestingModule({
providers: [
CsrfInterceptor
]
}));
beforeEach(() =>
TestBed.configureTestingModule({
providers: [CsrfInterceptor],
})
)
it('should be created', () => {
const interceptor: CsrfInterceptor = TestBed.inject(CsrfInterceptor);
expect(interceptor).toBeTruthy();
});
});
const interceptor: CsrfInterceptor = TestBed.inject(CsrfInterceptor)
expect(interceptor).toBeTruthy()
})
})