fix(core): update

This commit is contained in:
2019-02-17 17:04:31 +01:00
parent 7b27b231ff
commit 494cb72d78
6 changed files with 78 additions and 45 deletions

View File

@ -4,7 +4,9 @@ import * as tlt from '../ts/index';
let testMustache: tlt.SmartMustache;
tap.test('should create a valid instance of tlt', async () => {
testMustache = new tlt.SmartMustache('some awesome {{customString}} that is {{license}} licensed');
testMustache = new tlt.SmartMustache(
'some awesome {{customString}} that is {{license}} licensed'
);
expect(testMustache).to.be.instanceOf(tlt.SmartMustache);
});
tap.test('should output a valid string with some data', async () => {