Replies: 1 comment
-
Implemented (not exactly the same way) in #3006 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Right now we have the following commands:
I'd like to actually consolidate
test:browser:interaction
into the normal browser test run and not have it use a separate Playwright config. I'd like it to be subject to the same smoke-test/full-test logic as the browser tests. The new command list would look like:"test:browser:all""test:browser:interaction"We might be able to combine it with some utility to only execute tests for a particular component so that when we're updating snapshots on our branches, we can focus in on one component and not wait 30 minutes. Like you could do
In order to do that, we'd have to pre-process the command with a script, so we'd be forwarding
yarn test:browser
to that script.Beta Was this translation helpful? Give feedback.
All reactions