Skip to content

Instantly share code, notes, and snippets.

@manuq
Created May 20, 2013 18:38
Show Gist options
  • Save manuq/5614280 to your computer and use it in GitHub Desktop.
Save manuq/5614280 to your computer and use it in GitHub Desktop.
diff --git a/test/karma.conf.js b/test/karma.conf.js
index c1004d6..0eb253c 100644
--- a/test/karma.conf.js
+++ b/test/karma.conf.js
@@ -47,7 +47,7 @@ logLevel = LOG_INFO;
// enable / disable watching file and executing tests whenever any file changes
-autoWatch = true;
+autoWatch = false;
// Start these browsers, currently available:
@@ -58,7 +58,7 @@ autoWatch = true;
// - Safari (only Mac)
// - PhantomJS
// - IE (only Windows)
-browsers = [];
+browsers = ['Chrome'];
// If browser does not capture in given timeout [ms], kill it
@@ -67,4 +67,4 @@ captureTimeout = 60000;
// Continuous Integration mode
// if true, it capture browsers, run tests and exit
-singleRun = false;
+singleRun = true;
diff --git a/test/paletteSpec.js b/test/paletteSpec.js
index f06d51a..24540b8 100644
--- a/test/paletteSpec.js
+++ b/test/paletteSpec.js
@@ -16,6 +16,10 @@ define(function(require) {
expect(myPalette.isDown()).toBe(true);
});
+ it("testing", function() {
+ expect(false).toBe(true);
+ });
+
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment