mirror of
https://github.com/keymanapp/keyman.git
synced 2026-09-11 01:57:42 +00:00
8 lines
235 B
JavaScript
8 lines
235 B
JavaScript
var assert = chai.assert;
|
|
describe('LMLayerWorkerCode', function() {
|
|
it('should exist!', function() {
|
|
assert.isFunction(LMLayerWorkerCode,
|
|
'Could not find LMLayerWorkerCode! Does embedded_worker.js exist?'
|
|
);
|
|
});
|
|
});
|