Jonathan Tuzman

Results 9 issues of Jonathan Tuzman

I would like to have the buttons completely to the left and right of the content instead of overlaid on them. Essentially a row like: ``` // width: 10% //...

As far as I can tell from the docs, this allows you to set the permissions before your suite runs. I need the ability to set different permissions for different...

To address #1052. Includes a test in `factory-test.ts`. By the way, in that test file, `// $ExpectError` still shows as a TS error, although that might just be for me...

I have the following code for my factory, omitting some properties for brevity. ```typescript export const propsPlayerDetailFactory = Factory.extend({ sportId: () => getFakeSportId(), playerId: i => `${i}`, playerName: () =>...

In Storybook, when working on a screen that makes HTTP requests, I of course use MirageJS to mock the response that supplies data to the page. It would be very...

I notice that this app basically reproduces the Chrome debugger, except that for "Pause on Caught Exceptions" doesn't appear to be available anywhere. Can we please have this feature?

When I run my storybook locally, all of my interaction tests pass. When I run chromatic, the storybook builds, but on the "test your stories" step it fails with Error...

My use case is with a mouse (or, more accurately, a touch-screen that treats touches as mouse events). Currently I must click on an option to have it move into...

# Problem I am trying to use `mock-sockets` with Cypress, setting up the mock in the `onBeforeLoad` hook for `cy.visit()` in my `beforeEach` block. I can get one test to...