@kv-systems/ng-packagr
Version:
Compile and package Angular libraries in Angular Package Format (APF)
13 lines (11 loc) • 364 B
text/typescript
import { expect } from 'chai';
import * as fs from 'fs-extra';
import * as path from 'path';
describe(`sample-custom`, () => {
describe(`.ng_pkg_build`, () => {
it(`should not exist`, () => {
const buildFolderPath: string = path.resolve(__dirname, '..', '.ng_pkg_build');
expect(fs.existsSync(buildFolderPath)).not.to.be.true;
});
});
});