Skip to content

Commit

Permalink
took out the tests we don't need atm
Browse files Browse the repository at this point in the history
  • Loading branch information
KFlash committed Dec 31, 2015
1 parent 42581e9 commit 4d925d0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions config/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ module.exports = function(config) {
files: [
'../src/**/*__tests__*/**/*spec.ut.js', // UT
'../test/specs/no-jsx/**/*spec.browser.js', // AT
'../test/specs/no-jsx/**/*spec.server.js', // AT
'../test/specs/no-jsx/**/*spec.js', // AT
//'../test/specs/no-jsx/**/*spec.server.js', // AT
// '../test/specs/no-jsx/**/*spec.js', // AT
'../test/specs/jsx/**/*spec.browser.js', // AT
'../test/specs/jsx/**/*spec.server.js', // AT
'../test/specs/jsx/**/*spec.js' // AT
//'../test/specs/jsx/**/*spec.server.js', // AT
//'../test/specs/jsx/**/*spec.js' // AT

],
// list of files to exclude
Expand Down
10 changes: 5 additions & 5 deletions config/webpack.dev.conf.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
const webpack = require('webpack');
const glob = require('glob');

const entries = glob.sync('./test/specs/no-jsx/**/*.spec.js')
.concat(glob.sync('./test/specs/no-jsx/**/*.spec.browser.js'))
.concat(glob.sync('./test/specs/no-jsx/**/*.spec.server.js'))
const entries = glob.sync('./test/specs/no-jsx/**/*.spec.browser.js.spec.js')
//.concat(glob.sync('./test/specs/no-jsx/**/*.spec.js'))
// .concat(glob.sync('./test/specs/no-jsx/**/*.spec.server.js'))
.concat(glob.sync('./test/specs/jsx/**/*.spec.browser.js'))
.concat(glob.sync('./test/specs/jsx/**/*.spec.server.js'))
.concat(glob.sync('./test/specs/jsx/**/*.spec.js'))
//.concat(glob.sync('./test/specs/jsx/**/*.spec.server.js'))
//.concat(glob.sync('./test/specs/jsx/**/*.spec.js'))
.map(function(file) { return 'mocha!' + file; });

module.exports = {
Expand Down

0 comments on commit 4d925d0

Please sign in to comment.