-
Notifications
You must be signed in to change notification settings - Fork 178
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test(protocol-designer): fix e2e tests after vite migration #14635
Conversation
if (module === null) { | ||
if (moduleId === null) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this was a bug that slipped through years ago... module
is a special global keyword that webpack injected so we never noticed the bug. vite does not inject it, so we got a null access error
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thank you!!
@@ -1,10 +1,10 @@ | |||
# Opentrons Protocol Designer Beta |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lol thanks for removing this
|
||
## Overview | ||
|
||
Protocol Designer is a tool for scientists and technicians to create protocols for their [OT-2 personal pipetting robot][ot-2] without having to write any code. It provides visual feedback including liquid tracking and tip tracking to allow users to see exactly what their protocol will do at each step. The protocols are saved to Opentrons JSON Protocol files, which can be uploaded to the Opentrons Desktop App to run on a robot. | ||
|
||
Protocol Designer Beta is optimized for [Chrome][chrome] browser. Other browsers are not fully supported. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
and here too
Overview
This PR fixes Protocol Designer e2e tests from the vite migration. It also removes references to "beta" within PD cuz... it is not in beta.
Closes AUTH-86
Changelog
Review requests
Make sure PD e2e tests are passing
Risk assessment
Low