-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating to 17.2. Additional examples demonstrating new workspace features in register-with-browser (language support in browser), use-notifications (ability to silence notification center if you have your own sound) and workspace-platform-starter (ability to experiment with language support, ability to test self hosted notification center and the option to easily add office apps to your app directory through a new app json file).
- Loading branch information
Showing
188 changed files
with
3,372 additions
and
3,586 deletions.
There are no files selected for viewing
20 changes: 10 additions & 10 deletions
20
how-to/automation-testing/register-with-home-js/package.json
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,18 +1,18 @@ | ||
{ | ||
"name": "automation-testing-register-with-home-js", | ||
"version": "17.0.0", | ||
"version": "17.2.0", | ||
"description": "OpenFin Workspace Starter Automation Tests", | ||
"scripts": { | ||
"build": "echo Nothing to build", | ||
"test-remote-mocha": "of-automation https://built-on-openfin.github.io/workspace-starter/workspace/v17.0.0/register-with-home/manifest.fin.json ./tests/**/*.spec.js --reporter ./mocha.reporter.json --testFailCount 1 --workspace 17.0.15", | ||
"test-local-mocha": "of-automation http://localhost:8080/manifest.fin.json ./tests/**/*.spec.js --workspace 17.0.15", | ||
"test-remote-jasmine": "of-automation https://built-on-openfin.github.io/workspace-starter/workspace/v17.0.0/register-with-home/manifest.fin.json ./tests/**/*.spec.js --framework jasmine --reporter ./jasmine.reporter.json --testFailCount 1 --workspace 17.0.15", | ||
"test-local-jasmine": "of-automation http://localhost:8080/manifest.fin.json ./tests/**/*.spec.js --framework jasmine --workspace 17.0.15", | ||
"test-remote-jest": "of-automation https://built-on-openfin.github.io/workspace-starter/workspace/v17.0.0/register-with-home/manifest.fin.json ./tests/**/*.spec.js --framework jest --reporter ./jest.reporter.json --testFailCount 1 --workspace 17.0.15", | ||
"test-local-jest": "of-automation http://localhost:8080/manifest.fin.json ./tests/**/*.spec.js --framework jest --workspace 17.0.15", | ||
"test-offline": "of-automation http://localhost:8080/manifest.fin.json ./tests/**/*.spec.js --offline --storageFolder=./offline-storage --workspace 17.0.15", | ||
"test-remote-mocha-selenium": "of-automation https://built-on-openfin.github.io/workspace-starter/workspace/v17.0.0/register-with-home/manifest.fin.json ./tests/**/*.spec.js --driver=selenium --workspace 17.0.15", | ||
"test-local-mocha-selenium": "of-automation http://localhost:8080/manifest.fin.json ./tests/**/*.spec.js --driver=selenium --workspace 17.0.15" | ||
"test-remote-mocha": "of-automation https://built-on-openfin.github.io/workspace-starter/workspace/v17.2.0/register-with-home/manifest.fin.json ./tests/**/*.spec.js --reporter ./mocha.reporter.json --testFailCount 1 --workspace 17.2.14", | ||
"test-local-mocha": "of-automation http://localhost:8080/manifest.fin.json ./tests/**/*.spec.js --workspace 17.2.14", | ||
"test-remote-jasmine": "of-automation https://built-on-openfin.github.io/workspace-starter/workspace/v17.2.0/register-with-home/manifest.fin.json ./tests/**/*.spec.js --framework jasmine --reporter ./jasmine.reporter.json --testFailCount 1 --workspace 17.2.14", | ||
"test-local-jasmine": "of-automation http://localhost:8080/manifest.fin.json ./tests/**/*.spec.js --framework jasmine --workspace 17.2.14", | ||
"test-remote-jest": "of-automation https://built-on-openfin.github.io/workspace-starter/workspace/v17.2.0/register-with-home/manifest.fin.json ./tests/**/*.spec.js --framework jest --reporter ./jest.reporter.json --testFailCount 1 --workspace 17.2.14", | ||
"test-local-jest": "of-automation http://localhost:8080/manifest.fin.json ./tests/**/*.spec.js --framework jest --workspace 17.2.14", | ||
"test-offline": "of-automation http://localhost:8080/manifest.fin.json ./tests/**/*.spec.js --offline --storageFolder=./offline-storage --workspace 17.2.14", | ||
"test-remote-mocha-selenium": "of-automation https://built-on-openfin.github.io/workspace-starter/workspace/v17.2.0/register-with-home/manifest.fin.json ./tests/**/*.spec.js --driver=selenium --workspace 17.2.14", | ||
"test-local-mocha-selenium": "of-automation http://localhost:8080/manifest.fin.json ./tests/**/*.spec.js --driver=selenium --workspace 17.2.14" | ||
}, | ||
"author": "[email protected]", | ||
"license": "SEE LICENSE IN LICENSE.MD", | ||
|
22 changes: 11 additions & 11 deletions
22
how-to/automation-testing/register-with-home-ts/package.json
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,26 +1,26 @@ | ||
{ | ||
"name": "automation-testing-register-with-home", | ||
"version": "17.0.0", | ||
"version": "17.2.0", | ||
"description": "OpenFin Workspace Starter Automation Tests", | ||
"scripts": { | ||
"build": "echo Nothing to build", | ||
"test-remote-mocha": "of-automation https://built-on-openfin.github.io/workspace-starter/workspace/v17.0.0/register-with-home/manifest.fin.json ./tests/**/*.spec.ts --workspace 17.0.15 --testFailCount 1", | ||
"test-local-mocha": "of-automation http://localhost:8080/manifest.fin.json ./tests/**/*.spec.ts --workspace 17.0.15 --testFailCount 1", | ||
"test-remote-jasmine": "of-automation https://built-on-openfin.github.io/workspace-starter/workspace/v17.0.0/register-with-home/manifest.fin.json ./tests/**/*.spec.ts --framework jasmine --workspace 17.0.15 --testFailCount 1", | ||
"test-local-jasmine": "of-automation http://localhost:8080/manifest.fin.json ./tests/**/*.spec.ts --framework jasmine --workspace 17.0.15 --testFailCount 1", | ||
"test-remote-jest": "of-automation https://built-on-openfin.github.io/workspace-starter/workspace/v17.0.0/register-with-home/manifest.fin.json ./tests/**/*.spec.ts --framework jest --workspace 17.0.15 --testFailCount 1", | ||
"test-local-jest": "of-automation http://localhost:8080/manifest.fin.json ./tests/**/*.spec.ts --framework jest --workspace 17.0.15 --testFailCount 1", | ||
"test-offline": "of-automation http://localhost:8080/manifest.fin.json ./tests/**/*.spec.ts --offline --storageFolder=./offline-storage --workspace 17.0.15 --testFailCount 1", | ||
"test-remote-mocha-selenium": "of-automation https://built-on-openfin.github.io/workspace-starter/workspace/v17.0.0/register-with-home/manifest.fin.json ./tests/**/*.spec.ts --driver=selenium --workspace 17.0.15 --testFailCount 1", | ||
"test-local-mocha-selenium": "of-automation http://localhost:8080/manifest.fin.json ./tests/**/*.spec.ts --driver=selenium --workspace 17.0.15 --testFailCount 1" | ||
"test-remote-mocha": "of-automation https://built-on-openfin.github.io/workspace-starter/workspace/v17.2.0/register-with-home/manifest.fin.json ./tests/**/*.spec.ts --workspace 17.2.14 --testFailCount 1", | ||
"test-local-mocha": "of-automation http://localhost:8080/manifest.fin.json ./tests/**/*.spec.ts --workspace 17.2.14 --testFailCount 1", | ||
"test-remote-jasmine": "of-automation https://built-on-openfin.github.io/workspace-starter/workspace/v17.2.0/register-with-home/manifest.fin.json ./tests/**/*.spec.ts --framework jasmine --workspace 17.2.14 --testFailCount 1", | ||
"test-local-jasmine": "of-automation http://localhost:8080/manifest.fin.json ./tests/**/*.spec.ts --framework jasmine --workspace 17.2.14 --testFailCount 1", | ||
"test-remote-jest": "of-automation https://built-on-openfin.github.io/workspace-starter/workspace/v17.2.0/register-with-home/manifest.fin.json ./tests/**/*.spec.ts --framework jest --workspace 17.2.14 --testFailCount 1", | ||
"test-local-jest": "of-automation http://localhost:8080/manifest.fin.json ./tests/**/*.spec.ts --framework jest --workspace 17.2.14 --testFailCount 1", | ||
"test-offline": "of-automation http://localhost:8080/manifest.fin.json ./tests/**/*.spec.ts --offline --storageFolder=./offline-storage --workspace 17.2.14 --testFailCount 1", | ||
"test-remote-mocha-selenium": "of-automation https://built-on-openfin.github.io/workspace-starter/workspace/v17.2.0/register-with-home/manifest.fin.json ./tests/**/*.spec.ts --driver=selenium --workspace 17.2.14 --testFailCount 1", | ||
"test-local-mocha-selenium": "of-automation http://localhost:8080/manifest.fin.json ./tests/**/*.spec.ts --driver=selenium --workspace 17.2.14 --testFailCount 1" | ||
}, | ||
"author": "[email protected]", | ||
"license": "SEE LICENSE IN LICENSE.MD", | ||
"devDependencies": { | ||
"@openfin/automation-cli": "^1.2.0", | ||
"@openfin/automation-helpers": "^1.2.0", | ||
"@openfin/automation-native": "^1.2.0", | ||
"@types/chai": "4.3.11", | ||
"@types/chai": "4.3.12", | ||
"chai": "4.3.10" | ||
} | ||
} |
16 changes: 8 additions & 8 deletions
16
how-to/automation-testing/register-with-store-js/package.json
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,16 +1,16 @@ | ||
{ | ||
"name": "automation-testing-register-with-store-js", | ||
"version": "17.0.0", | ||
"version": "17.2.0", | ||
"description": "OpenFin Workspace Starter Automation Tests", | ||
"scripts": { | ||
"build": "echo Nothing to build", | ||
"test-remote-mocha": "of-automation https://built-on-openfin.github.io/workspace-starter/workspace/v17.0.0/register-with-store/manifest.fin.json ./tests/**/*.spec.js --workspace 17.0.15", | ||
"test-local-mocha": "of-automation http://localhost:8080/manifest.fin.json ./tests/**/*.spec.js --workspace 17.0.15", | ||
"test-remote-jasmine": "of-automation https://built-on-openfin.github.io/workspace-starter/workspace/v17.0.0/register-with-store/manifest.fin.json ./tests/**/*.spec.js --framework jasmine --workspace 17.0.15", | ||
"test-local-jasmine": "of-automation http://localhost:8080/manifest.fin.json ./tests/**/*.spec.js --framework jasmine --workspace 17.0.15", | ||
"test-remote-jest": "of-automation https://built-on-openfin.github.io/workspace-starter/workspace/v17.0.0/register-with-store/manifest.fin.json ./tests/**/*.spec.js --framework jest --workspace 17.0.15", | ||
"test-local-jest": "of-automation http://localhost:8080/manifest.fin.json ./tests/**/*.spec.js --framework jest --workspace 17.0.15", | ||
"test-offline": "of-automation http://localhost:8080/manifest.fin.json ./tests/**/*.spec.js --offline --storageFolder=./offline-storage --workspace 17.0.15" | ||
"test-remote-mocha": "of-automation https://built-on-openfin.github.io/workspace-starter/workspace/v17.2.0/register-with-store/manifest.fin.json ./tests/**/*.spec.js --workspace 17.2.14", | ||
"test-local-mocha": "of-automation http://localhost:8080/manifest.fin.json ./tests/**/*.spec.js --workspace 17.2.14", | ||
"test-remote-jasmine": "of-automation https://built-on-openfin.github.io/workspace-starter/workspace/v17.2.0/register-with-store/manifest.fin.json ./tests/**/*.spec.js --framework jasmine --workspace 17.2.14", | ||
"test-local-jasmine": "of-automation http://localhost:8080/manifest.fin.json ./tests/**/*.spec.js --framework jasmine --workspace 17.2.14", | ||
"test-remote-jest": "of-automation https://built-on-openfin.github.io/workspace-starter/workspace/v17.2.0/register-with-store/manifest.fin.json ./tests/**/*.spec.js --framework jest --workspace 17.2.14", | ||
"test-local-jest": "of-automation http://localhost:8080/manifest.fin.json ./tests/**/*.spec.js --framework jest --workspace 17.2.14", | ||
"test-offline": "of-automation http://localhost:8080/manifest.fin.json ./tests/**/*.spec.js --offline --storageFolder=./offline-storage --workspace 17.2.14" | ||
}, | ||
"author": "[email protected]", | ||
"license": "SEE LICENSE IN LICENSE.MD", | ||
|
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
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
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
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
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.