Skip to content

Commit 46ae518

Browse files
committed
add wallaby
1 parent b515cf2 commit 46ae518

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ coverage
55
.nyc_output
66
.travis.yml
77
yarn.lock
8+
wallaby.js

test/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const rewire = require('rewire')
2-
const cssStandardsRewired = rewire('..')
3-
const cssStandards = require('..')
2+
const cssStandardsRewired = rewire('../lib')
3+
const cssStandards = require('../lib')
44
const test = require('ava')
55

66
test('basic', (t) => {

wallaby.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
module.exports = function () {
2+
return {
3+
files: ['lib/**/*.js'],
4+
tests: ['test/**/*.js'],
5+
env: { type: 'node' },
6+
testFramework: 'ava',
7+
debug: true
8+
}
9+
}

0 commit comments

Comments
 (0)