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 b515cf2 commit 46ae518Copy full SHA for 46ae518
.npmignore
@@ -5,3 +5,4 @@ coverage
5
.nyc_output
6
.travis.yml
7
yarn.lock
8
+wallaby.js
test/index.js
@@ -1,6 +1,6 @@
1
const rewire = require('rewire')
2
-const cssStandardsRewired = rewire('..')
3
-const cssStandards = require('..')
+const cssStandardsRewired = rewire('../lib')
+const cssStandards = require('../lib')
4
const test = require('ava')
test('basic', (t) => {
wallaby.js
@@ -0,0 +1,9 @@
+module.exports = function () {
+ return {
+ files: ['lib/**/*.js'],
+ tests: ['test/**/*.js'],
+ env: { type: 'node' },
+ testFramework: 'ava',
+ debug: true
+ }
9
+}
0 commit comments