Terminate workers in openpgp.destroyWorker()
This commit is contained in:
parent
94a04eaa5c
commit
6ae6012786
|
@ -90,7 +90,10 @@ export function getWorker() {
|
|||
* Cleanup the current instance of the web worker.
|
||||
*/
|
||||
export function destroyWorker() {
|
||||
asyncProxy = undefined;
|
||||
if (asyncProxy) {
|
||||
asyncProxy.terminate();
|
||||
asyncProxy = undefined;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -446,7 +446,8 @@ describe('OpenPGP.js public api tests', function() {
|
|||
|
||||
it('should work', async function() {
|
||||
const workerStub = {
|
||||
postMessage: function() {}
|
||||
postMessage: function() {},
|
||||
terminate: function() {}
|
||||
};
|
||||
await Promise.all([
|
||||
openpgp.initWorker({
|
||||
|
@ -600,7 +601,8 @@ describe('OpenPGP.js public api tests', function() {
|
|||
|
||||
it('should delegate to async proxy', async function() {
|
||||
const workerStub = {
|
||||
postMessage: function() {}
|
||||
postMessage: function() {},
|
||||
terminate: function() {}
|
||||
};
|
||||
await Promise.all([
|
||||
openpgp.initWorker({
|
||||
|
|
Loading…
Reference in New Issue
Block a user