Daniel Howlett

Results 5 comments of Daniel Howlett

That is a nice solution. Can confirm it works and cleans up the scheduler.schedule subscription even after the fact in the synchronous case. Learned a little more about Subscriptions, thanks.

Simply removing the following line from the [types definition](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/testing-library__jest-dom/index.d.ts) solves it and doesn't impact the functionality from my brief testing. ``` /// ``` If anyone wants a hacky and crude...

Here's a solution I'm using. You should be able to do the following: ``` js return gulp.src('app/styles/base.scss') .pipe(watch('app/styles/base.scss')) .pipe(compassSingleFile({ sass: 'app', css: '.tmp' })); ``` ``` js /** * Run...

I've come up with a [crude workaround](https://github.com/testing-library/jest-dom/issues/427#issuecomment-1036164980) that's removed the block for me for now.

This has been driving me crazy and your detail about "when files are opened" was really helpful in understanding the issue, so thanks for that. Not sure if you are...