mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-10 10:55:33 +00:00
Test whether the LMLayerWorker can be instantiated.
This commit is contained in:
parent
043bef5df1
commit
fdaf5bc5b0
1 changed files with 4 additions and 4 deletions
|
|
@ -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);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue