Skip to content

Commit

Permalink
[ui-test][fix] increase timeout, don't skip sites (#1059)
Browse files Browse the repository at this point in the history
* update ui.tests to wdio8

* cloud condition

* fix: style

* fix imports, change .eslint to json

* skip sites test

* fix: report path copy

* reduce results size, use only video plugin screenshots

* simplify copying report

* missing readme titles

* Update src/main/archetype/ui.tests/test-module/lib/wdio.commands.js

Co-authored-by: Ramon Bisswanger <ramon@bisswanger.de>

* UI test: increase mocha test timeout

---------

Co-authored-by: Ramon Bisswanger <ramon@bisswanger.de>
  • Loading branch information
AlexRRR and bisswanger committed Mar 27, 2023
1 parent b284e8b commit ff01ddb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/archetype/ui.tests/test-module/specs/aem/sites.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ describe('AEM Sites Console', () => {
describe('Page Properties form', () => {
let originalTitle = 'original-page-title';

it.skip('should let user modify the title of a page', async () => {
it('should let user modify the title of a page', async () => {
let modifiedTitle = `modified-title-${Date.now()}`;

// Change page title
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export const config = {
// Mocha parameters
mochaOpts: {
ui: 'bdd',
timeout: 120000
timeout: 240000
},
// Gets executed before test execution begins
before: function() {
Expand Down

0 comments on commit ff01ddb

Please sign in to comment.