File size: 1,261 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | import * as shell from 'shelljs';
import * as util from '../utils/fixture';
import { execWithCache } from '../utils/shell';
shell.config.silent = false;
const testDir = 'e2e';
const fixtureName = 'build-invalid';
const stageName = `stage-${fixtureName}`;
describe('tsdx build :: invalid build', () => {
beforeAll(() => {
util.teardownStage(stageName);
util.setupStageWithFixture(testDir, stageName, fixtureName);
});
it('should fail gracefully with exit code 1 when build failed', () => {
const output = execWithCache('node ../dist/index.js build --legacy');
expect(output.code).toBe(1);
});
it('should only transpile and not type check', () => {
const output = execWithCache('node ../dist/index.js build --legacy --transpileOnly');
expect(shell.test('-f', 'dist/index.cjs')).toBeTruthy();
expect(
shell.test('-f', 'dist/build-invalid.development.cjs')
).toBeTruthy();
expect(
shell.test('-f', 'dist/build-invalid.production.min.cjs')
).toBeTruthy();
expect(shell.test('-f', 'dist/build-invalid.min.mjs')).toBeTruthy();
expect(shell.test('-f', 'dist/index.d.ts')).toBeTruthy();
expect(output.code).toBe(0);
});
afterAll(() => {
util.teardownStage(stageName);
});
});
|