[Tests] Fix FileWatcher

Need to use `pit` instead of `it`. I changed .toBe(false) instead of .toBe(true) just to make sure that the content is actually executed
This commit is contained in:
Christopher Chedeau 2015-03-14 11:35:55 -07:00
parent 63eca091b9
commit 6d7464efd5
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ describe('FileWatcher', function() {
});
});
it('it should get the watcher instance when ready', function() {
pit('it should get the watcher instance when ready', function() {
var fileWatcher = new FileWatcher(['rootDir']);
return fileWatcher._loading.then(function(watchers) {
watchers.forEach(function(watcher) {