Я тестирую один файл VUE, который импортирует файл Javascript.
// unlockWallet.worker.js
import { Wallet, Configs } from '@/helpers';
function create(password) {
const createdWallet = {};
const wallet = new Wallet.generate();
createdWallet.walletJson = wallet.toV3(password, {
kdf: Configs.wallet.kdf,
n: Configs.wallet.n
});
createdWallet.name = wallet.getV3Filename();
return createdWallet;
}
onmessage = function(event) {
if (event.data.type === 'createWallet') {
const workerResult = create(event.data.data[0]);
postMessage(workerResult);
}
};
И PasswordModal.vue Я импортирую файл unlockWallet.worker.js, как этот.
import Worker from '@/workers/unlockWallet.worker.js'
methods: {
unlockWallet() {
const worker = new Worker();
const self = this;
worker.postMessage({
type: 'unlockWallet',
data: [this.file, this.password]
});
worker.onmessage = function(e) {
// Regenerate the wallet since the worker only return an object instance. Not the whole wallet instance
self.$store.dispatch(
'decryptWallet',
BasicWallet.unlock({
type: 'manualPrivateKey',
manualPrivateKey: Buffer.from(e.data._privKey).toString('hex')
})
);
};
}
в PasswordModal.spec.js
import {shallowMount} from '@vue/test-utils'
import PasswordModal from '@/layouts/PasswordModal.vue';
И мне не удалось пройти этот тест.
Набор тестов не смог запустить ReferenceError: onmessage isне определено