Joseph Thomas
Joseph Thomas
I was having trouble getting babel to export aliased modules -- they were always transpiling with absolute paths instead of relative ones. I had been configuring babel with a `.babelrc.js`...
I'd like to be able to call `await page.evaluate(() => { debugger })` so I can get a better idea of problems within the chromium devtools. But, I see that...
I was having an issue where my test suddenly started timing out -- I finally debugged it by launching chromium with `generateImage({ launch: { ... } })`. I noticed in...
## 🚀 Feature request ### Current Behavior Currently, calling `validateField('firstName')` returns `void` (or `Promise`. Calling `validateForm()`, on the other hand, returns the object with errors for the entire form. ###...
It would be nice to be able to push the most recent commit - even if there are changes since that commit - instead of getting 'dirty repository..'
This code: ``` export const P = styled.p` ${({ theme, align }) => css` &:after { content: '\00a0\00a0'; } `}; ` ``` (other styles in this component have been omitted)...
__Description:__ (Forgive me if this doesn't belong in a Github issue) I've only just found Steal and would like to use it in a new project. But, when I look...
According to my webpack stats, it's adding about 55k to a production build. Is there a way to allow this to be eliminated by tree-shaking if `testStatechart` is not in...
With a statechart that looks like this, where an event triggers a transition to the same state, its associated `actions` are not updated unless `transition` is called with the second...
Just giving this a shot. This makes a 'fix' to work as I'd expect (see #74) but now there is a failing test. Needs (from my perspective): [ ] `machineDidUpdate`...