0
私はChokidarを使用しているクラスを持っており、今はジャスミンでそれをテストする必要があります。問題は、私はChokidarイベントをエミュレートする方法がわからないということですChokidarイベントをトリガーする方法
it("Should send notification, when internal directory is added",() => {
runs(() => {
flag = false;
pathWatch.watch(dirPath);
//TRIGGER chokidar on.add event??
//spyOn(pathWatch.watcher, "on").and.callFake((params) => {
// flag = true;
//});
});
waitsFor((): boolean => {
return flag;
}, "failure", 5000);
runs(() => {
var expectedNotifyAction = new NotifyAction(PathEvent.Add, notificationInternalDirPath);
expect(subscriber.processNotifyAction).toHaveBeenCalledWith(expectedNotifyAction);
});
});
:
public watch(path: string) {
var watchOptions: chokidar.WatchOptions = <chokidar.WatchOptions> {
persistent: true
};
this.watcher = chokidar.watch(path, watchOptions);
this.watcher.on("add", (fileName: string, stats: fs.Stats) => {
this.sendNotifyAction(new NotifyAction(PathEvent.Add, fileName));
}).on("change", (fileName: string, stats: fs.Stats) => {
this.sendNotifyAction(new NotifyAction(PathEvent.Change, fileName));
})
}
私のような私のテストの何かを持っているしたい:これはchokidarは、ボード上で来る方法、です。どんな助けも大歓迎です。
は、なぜ単にファイルに書き込み、追加しませんnode.jsファイルAPIを持つファイルであれば、chokidar – qballer
が起動するはずですが、これはちょっと面倒ですがchokidarイベントをエミュレートする方法が面白いです –
chokidarのテストhttps://github.com/paulmillr /chokidar/blob/master/test.js#L162 – qballer