diff --git a/common/predictive-text/unit_tests/headless/worker-intialization.js b/common/predictive-text/unit_tests/headless/worker-intialization.js index dedf9d60e0..7435ced341 100644 --- a/common/predictive-text/unit_tests/headless/worker-intialization.js +++ b/common/predictive-text/unit_tests/headless/worker-intialization.js @@ -2,10 +2,10 @@ var assert = require('chai').assert; var worker = require('../../worker'); -describe('Dummy worker', function() { - describe('#hello()', function() { - it('should return "hello"', function() { - assert.equal(worker.hello(), 'hello'); +describe('LMLayerWorker', function() { + describe('#constructor()', function() { + it('should construct with zero arguments', function() { + assert.isOk(new worker.LMLayerWorker); }); }); });