diff --git a/client/app/scripts/utils/__tests__/web-api-utils-test.js b/client/app/scripts/utils/__tests__/web-api-utils-test.js index e6407d0cf..d0820085b 100644 --- a/client/app/scripts/utils/__tests__/web-api-utils-test.js +++ b/client/app/scripts/utils/__tests__/web-api-utils-test.js @@ -7,19 +7,19 @@ describe('WebApiUtils', function() { const basePath = WebApiUtils.basePath; it('should handle /scope/terminal.html', function() { - expect(basePath("/scope/terminal.html")).toBe("/scope"); + expect(basePath('/scope/terminal.html')).toBe('/scope'); }); it('should handle /scope/', function() { - expect(basePath("/scope/")).toBe("/scope"); + expect(basePath('/scope/')).toBe('/scope'); }); it('should handle /scope', function() { - expect(basePath("/scope")).toBe("/scope"); + expect(basePath('/scope')).toBe('/scope'); }); it('should handle /', function() { - expect(basePath("/")).toBe(""); + expect(basePath('/')).toBe(''); }); }); });