From b2a28e642fc824a4b21b580cc3c855b6219483a0 Mon Sep 17 00:00:00 2001 From: Wolfram Schneider Date: Mon, 1 Dec 2014 15:32:46 +0000 Subject: [PATCH] reorder JS lib tests --- test/spec/mkws-config.js | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/test/spec/mkws-config.js b/test/spec/mkws-config.js index 33bd277..6942142 100644 --- a/test/spec/mkws-config.js +++ b/test/spec/mkws-config.js @@ -5,14 +5,6 @@ */ describe("Check for external JavaScript libs", function () { - it("JSNlog", function () { - expect(typeof JL).not.toBe('undefined'); - }); - - it("Handlebars", function () { - expect(typeof Handlebars).not.toBe('undefined'); - }); - it("jQuery", function () { expect(typeof mkws.$).not.toBe('undefined'); }); @@ -22,16 +14,24 @@ describe("Check for external JavaScript libs", function () { expect(typeof mkws.$.toJSON).not.toBe('undefined'); }); - it("pazpar2", function () { - expect(typeof pz2).not.toBe('undefined'); - }); - it("jQuery UI", function () { // if we have a popup widget, check for the jQuery UI lib if (mkws.$(".mkws-popup").length > 0) { expect(typeof mkws.$.ui).not.toBe('undefined'); } }); + + it("pazpar2", function () { + expect(typeof pz2).not.toBe('undefined'); + }); + + it("JSNlog", function () { + expect(typeof JL).not.toBe('undefined'); + }); + + it("Handlebars", function () { + expect(typeof Handlebars).not.toBe('undefined'); + }); }); describe("Check mkws.config object", function () { -- 1.7.10.4