-
Notifications
You must be signed in to change notification settings - Fork 2.8k
V16 QA Implement new release tag for E2E tests #19697
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
base: main
Are you sure you want to change the base?
Conversation
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.
Had a few comments
WindowsPart1Of3: | ||
vmImage: "windows-latest" | ||
testCommand: "npm run releaseTest -- --shard=1/3" | ||
WindowsPart2Of3: | ||
vmImage: "windows-latest" | ||
testCommand: "npm run releaseTest -- --shard=2/3" | ||
WindowsPart3Of3: | ||
vmImage: "windows-latest" | ||
testCommand: "npm run releaseTest -- --shard=3/3" |
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 don't have that many release tagged tests, so 2 runners might be fine, and what about linux?
@@ -83,7 +83,7 @@ for (const dataTypeName of dataTypeNames) { | |||
}); | |||
} | |||
|
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.
Might not be needed, as we also have a test for 'can not publish a mandatory checkbox list with an empty value' with the release tag
@@ -84,7 +84,7 @@ test('can create content with the custom radiobox data type', async ({umbracoApi | |||
expect(contentData.values[0].value).toEqual(optionValues[0]); | |||
}); | |||
|
|||
test('can not publish mandatory radiobox with an empty value', async ({umbracoApi, umbracoUi}) => { | |||
test('can not publish mandatory radiobox with an empty value', {tag: '@release'}, async ({umbracoApi, umbracoUi}) => { |
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.
Might not be needed, as we also have a test for 'can not publish a mandatory checkbox list with an empty value' with the release tag
Prerequisites
If there's an existing issue for this PR then this fixes
Description