-
-
Notifications
You must be signed in to change notification settings - Fork 135
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
TASK: Run acceptance tests also on chrome #3862
base: 8.3
Are you sure you want to change the base?
Changes from all commits
df16008
4b4216c
8f37ddd
45b8f57
6de3e09
9919071
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ kind: testcafe | |
sauce: | ||
region: us-west-1 | ||
concurrency: 1 # Controls how many suites are executed at the same time. | ||
retries: 0 | ||
retries: 3 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. retries / smart retries dont work as far as i tried. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. While testing the PR for 8.4 I had the case that one run failed and the retry succeeded. But did not enforce it after that. |
||
metadata: | ||
tags: | ||
- e2e | ||
|
@@ -16,8 +16,8 @@ testcafe: | |
# Controls what files are available in the context of a test run (unless explicitly excluded by .sauceignore). | ||
rootDir: ./ | ||
suites: | ||
- name: "Two dimensional Tests in Firefox on Windows" | ||
browserName: "firefox" | ||
- name: "Two dimensional Tests in Chrome on Windows" | ||
browserName: "chrome" | ||
src: | ||
- "Tests/IntegrationTests/Fixtures/2Dimension/*.e2e.js" | ||
platformName: "Windows 10" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,20 +40,6 @@ const SETTINGS_WITH_NODE_TREE_PRESETS = { | |
presets: { | ||
'default': { | ||
baseNodeType: 'Neos.Neos:Document,!Neos.TestNodeTypes:Document.Blog,!Neos.TestNodeTypes:Document.BlogArticle' | ||
}, | ||
'blog': { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. i think we should try to keep it and make it work on chrome. I dont know why it doesnt work in ci. Locally it works splendidly. We have to debug the http request There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I had the issue also locally, and therefore I changed this and also did not see why we need to change it. But I was not involved in the change back then. |
||
ui: { | ||
icon: 'newspaper-o', | ||
label: 'Show Blog only' | ||
}, | ||
baseNodeType: 'Neos.TestNodeTypes:Document.Blog' | ||
}, | ||
'blog-articles': { | ||
ui: { | ||
icon: 'file-text-o', | ||
label: 'Show Blog Articles only' | ||
}, | ||
baseNodeType: 'Neos.TestNodeTypes:Document.BlogArticle' | ||
} | ||
} | ||
} | ||
|
@@ -88,7 +74,7 @@ test('Node tree preset "default" removes all blog related nodes and only loads n | |
test('Node tree preset "blog" shows nothing but page [🗋 Blog]', async (t) => { | ||
await t.click('#btn-ToggleDocumentTreeFilter'); | ||
await t.click('#neos-NodeTreeFilter'); | ||
await t.click(Selector('[role="button"]').withText('Show Blog only')); | ||
await t.click(Selector('[role="button"]').withText('Blog')); | ||
|
||
await t.expect(Page.treeNode.withExactText('Blog').exists) | ||
.ok('[🗋 Blog] did not show up after switching to node tree preset "blog".'); | ||
|
@@ -97,7 +83,7 @@ test('Node tree preset "blog" shows nothing but page [🗋 Blog]', async (t) => | |
test('In node tree preset "blog", page [🗋 Blog] has no toggle handle', async (t) => { | ||
await t.click('#btn-ToggleDocumentTreeFilter'); | ||
await t.click('#neos-NodeTreeFilter'); | ||
await t.click(Selector('[role="button"]').withText('Show Blog only')); | ||
await t.click(Selector('[role="button"]').withText('Blog')); | ||
|
||
await t.expect(Page.getToggleChildrenButtonOf('Blog').exists) | ||
.notOk('[🗋 Blog] has a toggle handle, even though its children do not match the currently set filter in node tree preset "blog".'); | ||
|
@@ -106,7 +92,7 @@ test('In node tree preset "blog", page [🗋 Blog] has no toggle handle', async | |
test('Reloading the node tree while in preset "blog" results in nothing but page [🗋 Blog]', async (t) => { | ||
await t.click('#btn-ToggleDocumentTreeFilter'); | ||
await t.click('#neos-NodeTreeFilter'); | ||
await t.click(Selector('[role="button"]').withText('Show Blog only')); | ||
await t.click(Selector('[role="button"]').withText('Blog')); | ||
await t.click('#neos-PageTree-RefreshPageTree'); | ||
|
||
await t.expect(Page.treeNode.withExactText('Blog').exists) | ||
|
@@ -116,7 +102,7 @@ test('Reloading the node tree while in preset "blog" results in nothing but page | |
test('Node tree preset "blog-articles" shows page [🗋 Blog] and all articles beneath it', async (t) => { | ||
await t.click('#btn-ToggleDocumentTreeFilter'); | ||
await t.click('#neos-NodeTreeFilter'); | ||
await t.click(Selector('[role="button"]').withText('Show Blog Articles only')); | ||
await t.click(Selector('[role="button"]').withText('Blog Article')); | ||
|
||
await t.expect(Page.treeNode.withExactText('Blog').exists) | ||
.ok('[🗋 Blog] did not show up after switching to node tree preset "blog-articles".'); | ||
|
@@ -141,7 +127,7 @@ test('BUG #3816: Switching back from node tree preset "blog" does not affect loa | |
|
||
await t.click('#btn-ToggleDocumentTreeFilter'); | ||
await t.click('#neos-NodeTreeFilter'); | ||
await t.click(Selector('[role="button"]').withText('Show Blog only')); | ||
await t.click(Selector('[role="button"]').withText('Blog')); | ||
await t.expect(Page.treeNode.withExactText('Blog').exists) | ||
.ok('[🗋 Blog] did not show up after switching to node tree preset "blog".'); | ||
|
||
|
@@ -192,7 +178,7 @@ test('BUG #2583: Searching the document tree does not break expansion in node tr | |
test('BUG #2800 1/2: Moving pages before/after in a filtered view does not lead to the disappearance of nodes', async (t) => { | ||
await t.click('#btn-ToggleDocumentTreeFilter'); | ||
await t.click('#neos-NodeTreeFilter'); | ||
await t.click(Selector('[role="button"]').withText('Show Blog Articles only')); | ||
await t.click(Selector('[role="button"]').withText('Blog Article')); | ||
|
||
// | ||
// Move Blog Article [🗋 Hello World!] before [🗋 Writing Blog Articles considered harmful] | ||
|
@@ -232,7 +218,7 @@ test('BUG #2800 1/2: Moving pages before/after in a filtered view does not lead | |
test('BUG #2800 2/2: Moving pages into each other in a filtered view does not break expansion', async (t) => { | ||
await t.click('#btn-ToggleDocumentTreeFilter'); | ||
await t.click('#neos-NodeTreeFilter'); | ||
await t.click(Selector('[role="button"]').withText('Show Blog Articles only')); | ||
await t.click(Selector('[role="button"]').withText('Blog Article')); | ||
|
||
// | ||
// Move Blog Article [🗋 Hello World!] into [🗋 Writing Blog Articles considered harmful] | ||
|
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.
why not chrome? ^^
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.
It was just a try, in safari we also have issues in the tests ;)