Charles Lowell
Charles Lowell
there is no need to halt individual interactions. We can stop all the current interactions in the page, but it is not necessary
If you have an interactor like: ```js export default HTML.extend("MyComponent") .selector('.my-class') ``` and when you try and use it ```js await MyComponent("Hello").exists(); ``` but there is no element matching `.my-class`...
By far, Most of the time you want to make sure that an assertion is eventually true over the timeout period. In other words, it can fail any number of...
In order to [integrate with the storybook debugger](https://github.com/storybookjs/storybook/issues/16667), we need to be able to represent interactors in _code form_ and not just in text description form. Currently, an interactor sequence...
Safari includes up to one newline in its `innerText` property for elements. Why, I'm not sure, but it ends up that you don't match your selectors on different platforms: ![image...
Unlike business app authors, component library authors often need to make assertions on the _actual layout_ a component and how it renders. One way to deal with this is to...
This spikes a graphql simulator with envelope, express-graphql playground, and using the starwars schema from the graphql-js examples ## TODO - [ ] How is this going to work as...
Currently, if the `createSimulation()` mutation fails, then the JavaScript client will silently accept the result since the actual transport of the error over the wire was successful.