Fix AsyncProxy tests

This commit is contained in:
Tankred Hase 2015-02-11 14:20:42 +01:00
parent da3dbf7acc
commit d25c90bff1

View File

@ -55,7 +55,9 @@ function AsyncProxy(path, options) {
this.seedRandom(INITIAL_RANDOM_SEED);
// FIFO
this.tasks = [];
this.worker.postMessage({event: 'configure', config: options.config});
if (options && options.config) {
this.worker.postMessage({event: 'configure', config: options.config});
}
}
/**