Merge "selenium: Run only one test in Jenkins daily job"

This commit is contained in:
jenkins-bot 2022-06-08 14:29:45 +00:00 committed by Gerrit Code Review
commit 24b49fbf87
2 changed files with 2 additions and 2 deletions

View file

@ -8,7 +8,7 @@
"doc": "jsduck",
"postdoc": "grunt copy:jsduck",
"screenshots-all": "grunt screenshots-all",
"selenium-daily": "npm run selenium-test",
"selenium-daily": "npm run selenium-test -- --mochaOpts.grep @daily",
"selenium-test": "wdio tests/selenium/wdio.conf.js"
},
"devDependencies": {

View file

@ -8,7 +8,7 @@ describe( 'Content Editable', function () {
let name, content;
it( 'should load when an url is opened', async function () {
it( 'should load when an url is opened @daily', async function () {
content = Util.getTestString();
name = Util.getTestString();
await browser.deleteAllCookies();