-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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: run app e2e tests in Windows CI #19979
Conversation
Thanks for taking the time to open a PR!
|
Test summaryRun details
View run in Cypress Dashboard ➡️ Failures
Flakiness
This comment has been generated by cypress-bot as a result of this project's GitHub integration settings. You can manage this integration in this project's settings in the Cypress Dashboard |
2abfe9d
to
aa51f8a
Compare
063ce64
to
48be4ca
Compare
…ndows-app-e2e-tests
|
||
expect(browsers).to.have.length.greaterThan(1) | ||
|
||
// TODO: is this really how this is supposed to look? |
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.
Opened a Jira ticket for this: https://cypress-io.atlassian.net/browse/UNIFY-1026
// TODO: is this really how this is supposed to look? |
yarn.lock
Outdated
@@ -17162,9 +17162,9 @@ cyclist@^1.0.1: | |||
resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-1.0.1.tgz#596e9698fd0c80e12038c2b82d6eb1b35b6224d9" | |||
integrity sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk= | |||
|
|||
cypress-example-kitchensink@cypress-io/cypress-example-kitchensink#feat/use-supportFiles: | |||
cypress-example-kitchensink@cypress-io/cypress-example-kitchensink#8389bb6b09c59c2720ceeaadecc8eaa2d4d6551d: |
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.
I don't think this is necessary anymore. 10.0-release and my branch are now passing without it.
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.
The packages/example
build scripts are not compatible with Windows, so using the pre-renamed files available in this commit actually are necessary for Windows.
@@ -1,5 +1,19 @@ | |||
import defaultMessages from '@packages/frontend-shared/src/locales/en-US.json' | |||
|
|||
function getPathForPlatform (posixPath: string) { |
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.
Could we import this?
import { getPathForPlatform } from '../../src/paths'
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.
I purposely duplicated this logic so a regression in src/paths
wouldn't cause the tests to erroneously pass by virtue of changing the expectation of the tests. I figure it's worth the duplication it to ensure the expectations of this spec are kept constant.
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 is path.normalize()
...
return posixPath | ||
} | ||
|
||
function getRunnerHref (specPath: string) { |
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.
Could we move this to src/paths like above in case it's needed in the future?
…ndows-app-e2e-tests
export function getPathForPlatform (posixPath: string) { | ||
if (Cypress.platform === 'win32') return posixPath.replaceAll('/', '\\') | ||
|
||
return posixPath | ||
} |
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 looks like path.normalize()
https://nodejs.org/api/path.html#pathnormalizepath
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.
true, we could use that instead
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.
oh right, i don't think we have path
here since it's on the client-side
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.
Once you replace the function with path.normalize()
I will approve
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.
We have to avoid resolving/building paths in the browser but this is how it was done until now so we should do this refactoring in another story.
User facing changelog
Additional details
windows-run-app-integration-tests-chrome
with all app tests now passing on Windows.googlechrome
installed than runningchoco
every timechoco install
.How has the user experience changed?
PR Tasks
cypress-documentation
?type definitions
?cypress.schema.json
?