You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
we need to build some kind of integration testing utility for testing --watch mode.
Current tests are testing most of the core functionality, but don't catch any integration bugs and are very expensive in maintenance (have to be fixed/updated every time we touch watch code)
we need to have something that keeps the subprocess running and interacts with it, matchin output/input
test('watch mode',async()=>{constwatch=runJestWatch(DIR);awaitwatch.sendKeys('t');awaitwatch.sedKeys('test name pattern');expect(watch.purgeStdout()).toMatch('ran all tests with names matching');awaitwatch.exit();});
The text was updated successfully, but these errors were encountered:
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Please note this issue tracker is not a help forum. We recommend using StackOverflow or our discord channel for questions.
we need to build some kind of integration testing utility for testing
--watch
mode.Current tests are testing most of the core functionality, but don't catch any integration bugs and are very expensive in maintenance (have to be fixed/updated every time we touch watch code)
we need to have something that keeps the subprocess running and interacts with it, matchin output/input
The text was updated successfully, but these errors were encountered: