This repository has been archived by the owner on May 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* RUN-3996 fixed a multi-runtime regression (#109) * V bump.30.2 (#110) (#111) * RUN-3996 fixed a multi-runtime regression (#109) * Version bump to 30.2 * RUN-3999 multi runtime tests config update (#112) * V bump.30.2 (#110) * RUN-3996 fixed a multi-runtime regression (#109) * Version bump to 30.2 * RUN-3999 Update multi runtime tests config * Bug/run 3965 multi runtime cache clearing issue (#114) * V bump.30.2 (#110) * RUN-3996 fixed a multi-runtime regression (#109) * Version bump to 30.2 * RUN-3965 Fix EPERM: operation not permitted * RUN-3965 Fix some cache folders not deleted issue * RUN-4017/services (#113) * passing tests * made changes * RUN-4028 - Async add listener (#115) * V bump.30.2 (#110) * RUN-3996 fixed a multi-runtime regression (#109) * Version bump to 30.2 * some test fixes * more timeouts in tests * altered tests to check for awaiting newlistener * undo unnecessary edit * fix types of registereventlistener and unregister * hold, fixed removeAllListeners but need to test * added some tests * added testing * cleanup * fix prependonce * bit more testing * revert test changes * changed class name, some cleanup * make tests match new best practices * name of test file * tests cleanup * back to arrows for tslint * bind rawsend (#116) * RUN-4045 register window name early in creation (#117) * RUN-4033 plugin.import accepts a string (#118) * Feature/test sledghammer (#119) * sledghammer approach to fixing tests. * taking a sledghammer to our Multi runtime tests. * Moving back to es6 untill we hit a major version. * A few items from the code review. * code review items. * code review items. * V bump.30.2 (#110) (#121) * RUN-3996 fixed a multi-runtime regression (#109) * Version bump to 30.2 * RUN-3898 - External services tests (#120) * hiold * hold * tests for external services re RUN-3898 * clean up * Test fixed, no longer leaving around runtime (#122) * test fixed, no longer leaving around runtime * cleanup * Fixed issue with the webpack grunt task where it was not reporting the errors correctly (#123) * Fixed issue with the webpack grunt task where it was not reporting the errors correctly * Passing error codes instead of arrays. * version bump. (#124)
- Loading branch information
Showing
47 changed files
with
1,045 additions
and
504 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,8 @@ | |
/src/.baseDir.ts | ||
TODO | ||
test/app.json | ||
test/client.json | ||
test/service.json | ||
/docs | ||
cache.dat | ||
/cache | ||
|
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<html> | ||
<head> | ||
<title>Service Client</title> | ||
</head> | ||
<body> | ||
|
||
<h3>Service Client</h3> | ||
|
||
<div id="result"></div> | ||
|
||
<script> | ||
fin.desktop.main(async () => { | ||
fin.desktop.InterApplicationBus.subscribe("*", "start", async function(message, uuid, name) { | ||
const client = await fin.desktop.Service.connect({uuid}); | ||
client.dispatch('test').then(res => { | ||
fin.desktop.InterApplicationBus.publish("return", res); | ||
}) | ||
}); | ||
}); | ||
</script> | ||
|
||
</body> | ||
</html> |
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<html> | ||
<head> | ||
<title>Service Provider</title> | ||
</head> | ||
<body> | ||
|
||
<h3>Service Provider</h3> | ||
|
||
<div id="result"></div> | ||
|
||
<script> | ||
fin.desktop.main(async () => { | ||
const provider = await fin.desktop.Service.register(); | ||
provider.register('test', () => { | ||
return 'return-test'; | ||
}); | ||
provider.onConnection(c => { | ||
console.log('connection', c); | ||
}); | ||
}); | ||
</script> | ||
|
||
</body> | ||
</html> |
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.