@kv-systems/ng-packagr
Version:
Compile and package Angular libraries in Angular Package Format (APF)
13 lines (11 loc) • 368 B
text/typescript
import { expect } from 'chai';
import * as fs from 'fs-extra';
import * as path from 'path';
describe(`Missing primary entry point dependencies `, () => {
describe(`library build erorr`, () => {
it(`should have no build output`, () => {
const exists = fs.existsSync(path.resolve(__dirname, '../dist'));
expect(exists).to.be.false;
});
});
});