-
Notifications
You must be signed in to change notification settings - Fork 183
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2780 from owncloud/update-web-4.5.0
[full-ci] Bump web to v4.5.0
- Loading branch information
Showing
12 changed files
with
606 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,9 @@ | ||
const path = require('path') | ||
const WEB_PATH = process.env.WEB_PATH | ||
const TEST_INFRA_DIRECTORY = process.env.TEST_INFRA_DIRECTORY | ||
|
||
const config = require(path.join(WEB_PATH, 'nightwatch.conf.js')) | ||
const config = require(path.join(TEST_INFRA_DIRECTORY, 'nightwatch.conf.js')) | ||
|
||
config.page_objects_path = [WEB_PATH + '/tests/acceptance/pageObjects', 'ui/tests/acceptance/pageobjects'] | ||
config.custom_commands_path = WEB_PATH + '/tests/acceptance/customCommands' | ||
config.page_objects_path = [TEST_INFRA_DIRECTORY + '/pageObjects', 'ui/tests/acceptance/pageobjects'] | ||
config.custom_commands_path = TEST_INFRA_DIRECTORY + '/customCommands' | ||
|
||
module.exports = { | ||
...config | ||
} | ||
module.exports = config |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ | |
"license": "Apache-2.0", | ||
"author": "ownCloud GmbH <[email protected]>", | ||
"scripts": { | ||
"acceptance-tests": "cucumber-js --retry 1 --require-module @babel/register --require-module @babel/polyfill --require ${TEST_INFRA_DIRECTORY}/acceptance/setup.js --require ui/tests/acceptance/stepDefinitions --require ${TEST_INFRA_DIRECTORY}/acceptance/stepDefinitions --format @cucumber/pretty-formatter -t \"${TEST_TAGS:-not @skip and not @skipOnOC10}\"", | ||
"acceptance-tests": "cucumber-js --retry 1 --require-module @babel/register --require-module @babel/polyfill --require ${TEST_INFRA_DIRECTORY}/setup.js --require ui/tests/acceptance/stepDefinitions --require ${TEST_INFRA_DIRECTORY}/stepDefinitions --format @cucumber/pretty-formatter -t \"${TEST_TAGS:-not @skip and not @skipOnOC10}\"", | ||
"build": "rollup -c", | ||
"generate-api": "node node_modules/swagger-vue-generator/bin/generate-api.js --package-version v0 --source pkg/proto/v0/accounts.swagger.json --moduleName accounts --destination ui/client/accounts/index.js", | ||
"lint": "eslint ui/**/*.vue ui/**/*.js --color --global requirejs --global require", | ||
|
@@ -47,6 +47,7 @@ | |
"@rollup/plugin-json": "^4.0.1", | ||
"@rollup/plugin-replace": "^2.3.0", | ||
"archiver": "^5.3.0", | ||
"chromedriver": "^93.0.1", | ||
"cross-env": "^7.0.3", | ||
"easygettext": "^2.17.0", | ||
"eslint": "7.24.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.