From 1fc2db85fa339f9b134d45c15d2ad4cf3d681070 Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Thu, 16 Jun 2016 03:06:08 -0700 Subject: web: fix tests --- web/src/js/tests/utils.js | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 web/src/js/tests/utils.js (limited to 'web/src/js/tests/utils.js') diff --git a/web/src/js/tests/utils.js b/web/src/js/tests/utils.js deleted file mode 100644 index acbadc92..00000000 --- a/web/src/js/tests/utils.js +++ /dev/null @@ -1,16 +0,0 @@ -jest.dontMock("jquery"); -jest.dontMock("../utils"); - -import {formatSize} from "../utils.js" - -describe("utils", function () { - it("formatSize", function(){ - expect(formatSize(1024)).toEqual("1kb"); - expect(formatSize(0)).toEqual("0"); - expect(formatSize(10)).toEqual("10b"); - expect(formatSize(1025)).toEqual("1.0kb"); - expect(formatSize(1024*1024)).toEqual("1mb"); - expect(formatSize(1024*1024+1)).toEqual("1.0mb"); - }); -}); - -- cgit v1.2.3