diff --git a/tests/index.html b/tests/index.html
index d50e9c589..8624ca914 100644
--- a/tests/index.html
+++ b/tests/index.html
@@ -30,6 +30,7 @@
/* vendor paths */
'jquery' : './support_files/vendor/jquery-2.2.4.min',
'glMatrix' : './support_files/vendor/gl-matrix.min',
+ 'chroma' : './support_files/vendor/chroma.min',
/* succinct tree paths */
'ByteArray': './support_files/js/byte-array',
@@ -43,19 +44,21 @@
'testBPTree' : './../tests/test-bp-tree',
'testByteTree' : './../tests/test-byte-array',
'testCamera' : './../tests/test-camera',
+ 'testColorer' : './../tests/test-colorer',
'testSummaryHelper': './../tests/test-summary-helper'
}
});
// load tests
require(
- ['jquery', 'glMatrix', 'ByteArray', 'BPTree', 'Camera',
- 'BiomTable', 'SummaryHelper', 'testBPTree', 'testByteTree', 'testCamera',
- 'testSummaryHelper'],
+ ['jquery', 'glMatrix', 'chroma', 'ByteArray', 'BPTree', 'Camera',
+ 'Colorer', 'BiomTable', 'SummaryHelper', 'testBPTree', 'testByteTree',
+ 'testCamera', 'testColorer', 'testSummaryHelper'],
// start tests
- function ($, gl, ByteArray, BPTree, Camera, BiomTable, SummaryHelper,
- testBPTree, testByteTree, testCamera, testSummaryHelper) {
+ function ($, gl, chroma, ByteArray, BPTree, Camera, Colorer, BiomTable,
+ SummaryHelper, testBPTree, testByteTree, testCamera, testColorer,
+ testSummaryHelper) {
$(document).ready(function() {
QUnit.start();
});
diff --git a/tests/test-colorer.js b/tests/test-colorer.js
new file mode 100644
index 000000000..93f89d09d
--- /dev/null
+++ b/tests/test-colorer.js
@@ -0,0 +1,15 @@
+require(['jquery', 'Colorer'], function($, Colorer) {
+ $(document).ready(function() {
+ // Setup test variables
+ module('Colorer' , {
+ setup: function() {
+ },
+
+ teardown: function() {
+ }
+ });
+ test('Test nothing right now', function() {
+ expect(0);
+ });
+ });
+});