Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions test/test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/*global Backgrid */
"use strict";
require('../src/Backgrid.ColumnManager');
describe("Backgrid.Extension.ColumnManager - Visibility management", function () {
var columns;
var options;
Expand Down
15 changes: 8 additions & 7 deletions wallaby.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
var wallabyWebpack = require('wallaby-webpack');
var webpackConfig = require('./config/webpack.wallaby');
var webpackPostprocessor = wallabyWebpack(webpackConfig);
var webpackPostprocessor = wallabyWebpack(webpackConfig());

module.exports = function () {
return {
files: [
{
pattern: "src/*.js",
load: false
},
{
pattern: "node_modules/jquery/dist/jquery.min.js",
instrument: false
Expand All @@ -24,18 +20,23 @@ module.exports = function () {
{
pattern: "node_modules/backgrid/lib/backgrid.js",
instrument: false
},
{
pattern: "src/*.js",
load: false
}
],

tests: [
{
pattern: 'test/*.js',
load: true
load: false
}
],
debug: true,
//debug: true,
postprocessor: webpackPostprocessor,
bootstrap: function () {
// Backgrid/jquery etc are available here if a console.log is used.
window.__moduleBundler.loadTests();
}
}
Expand Down