Skip to content
Snippets Groups Projects
Commit 6351a951 authored by Art Lowel's avatar Art Lowel
Browse files

fix test and lint

parent f368da7a
Branches
No related merge requests found
......@@ -162,7 +162,7 @@ describe('RequestService', () => {
});
});
describe('if the request with the specified UUID doesn\'t exist in the store', () => {
describe(`if the request with the specified UUID doesn't exist in the store `, () => {
beforeEach(() => {
selectSpy.and.callFake(() => {
return () => {
......@@ -171,10 +171,10 @@ describe('RequestService', () => {
});
});
it('should return an Observable of undefined', () => {
it(`it shouldn't return anything`, () => {
const result = service.getByUUID(testUUID);
scheduler.expectObservable(result).toBe('b', { b: undefined });
scheduler.expectObservable(result).toBe('');
});
});
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment