Skip to content

Commit

Permalink
Fix watch tests
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanZim committed Feb 4, 2017
1 parent 086b387 commit fa1b176
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/watch.js
Expand Up @@ -82,12 +82,12 @@ test.cb('--watch works', function (t) {
setTimeout(() => t.end('test timeout'), 50000)
})

test.skip.cb('--watch postcss.config.js', function (t) {
test.cb('--watch postcss.config.js', function (t) {
let cp

t.plan(2)

ENV('module.exports = {}', ['import.css'])
ENV('module.exports = {}', ['a.css', 'import.css'])
.then((dir) => {
// Init watcher:
const watcher = chokidar.watch('.', {
Expand Down Expand Up @@ -163,12 +163,12 @@ test.skip.cb('--watch postcss.config.js', function (t) {
setTimeout(() => t.end('test timeout'), 50000)
})

test.skip.cb('--watch dependencies', function (t) {
test.cb('--watch dependencies', function (t) {
let cp

t.plan(2)

ENV('', ['import.css'])
ENV('', ['a.css', 'import.css'])
.then((dir) => {
// Init watcher:
const watcher = chokidar.watch('.', {
Expand Down

0 comments on commit fa1b176

Please sign in to comment.