We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 251436e commit 8b8c00fCopy full SHA for 8b8c00f
test/buster.js
@@ -1,10 +1,14 @@
1
-var config = module.exports;
+var config = module.exports,
2
+ fs = require('fs'),
3
+ bower = {
4
+ jquery: JSON.parse(fs.readFileSync('bower_components/jquery/bower.json', 'utf8'))
5
+ };
6
7
config["My tests"] = {
8
rootPath: "../",
9
environment: "browser", // or "node"
10
libs: [
- "bower_components/jquery/jquery.min.js"
11
+ "bower_components/jquery/" + bower.jquery.main,
12
],
13
sources: [
14
"src/callbacks.js",
0 commit comments