38 lines
1.1 KiB
TypeScript
38 lines
1.1 KiB
TypeScript
import { expect, tap } from '@push.rocks/tapbundle';
|
|
import * as path from 'path';
|
|
|
|
import * as smartscaf from '../ts/index.js';
|
|
|
|
process.env.CI = 'true';
|
|
|
|
let testScafTemplate: smartscaf.ScafTemplate;
|
|
|
|
tap.test('should create new Smartscaf instance', async () => {
|
|
testScafTemplate = new smartscaf.ScafTemplate('./test/test_template');
|
|
expect(testScafTemplate).toBeInstanceOf(smartscaf.ScafTemplate);
|
|
});
|
|
|
|
tap.test('Smartscaf instance -> should read a template directory', async () => {
|
|
await testScafTemplate.readTemplateFromDir();
|
|
expect(testScafTemplate.templateSmartfileArray.length).toEqual(6);
|
|
});
|
|
|
|
tap.test('smartfile -> should accept variables', async () => {
|
|
await testScafTemplate.supplyVariables({});
|
|
console.log(testScafTemplate.missingVariables);
|
|
});
|
|
|
|
tap.test('ask cli', async () => {
|
|
await testScafTemplate.askCliForMissingVariables();
|
|
});
|
|
|
|
tap.test('should have valid supplied variables', async () => {
|
|
console.log(testScafTemplate.suppliedVariables);
|
|
});
|
|
|
|
tap.test('should output ready rendered template', async () => {
|
|
await testScafTemplate.writeToDisk(path.resolve('./test/test_output'));
|
|
});
|
|
|
|
tap.start();
|