Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Chore: combine tests in tests/lib/eslint.js and tests/lib/linter.js (#…
…8746)

3ec436e renamed lib/eslint.js to lib/linter.js, but it did not rename the corresponding test file, which remained as tests/lib/eslint.js. When adding tests for linter.js afterwards, we put them in a new tests/lib/linter.js file. This is confusing because the tests for lib/linter.js are now in two different places. This commit combines the two test files into tests/lib/linter.js.
  • Loading branch information
not-an-aardvark committed Jun 17, 2017
1 parent b7cc1e6 commit a3ff8f2
Show file tree
Hide file tree
Showing 3 changed files with 3,852 additions and 3,894 deletions.
4 changes: 2 additions & 2 deletions karma.conf.js
Expand Up @@ -18,7 +18,7 @@ module.exports = function(config) {
"node_modules/chai/chai.js",
"node_modules/sinon/pkg/sinon.js",
"build/eslint.js",
"tests/lib/eslint.js"
"tests/lib/linter.js"
],


Expand All @@ -30,7 +30,7 @@ module.exports = function(config) {
// preprocess matching files before serving them to the browser
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
preprocessors: {
"tests/lib/eslint.js": ["babel"]
"tests/lib/linter.js": ["babel"]
},
babelPreprocessor: {
options: {
Expand Down

0 comments on commit a3ff8f2

Please sign in to comment.