ts-node-builder
Version:
60 lines • 3.24 kB
JavaScript
;
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
const architect_1 = require("@angular-devkit/architect");
const testing_1 = require("@angular-devkit/architect/testing");
const core_1 = require("@angular-devkit/core");
const { join } = require('path');
describe('Command Runner Builder', () => {
let architect;
let architectHost;
beforeEach(() => __awaiter(void 0, void 0, void 0, function* () {
const registry = new core_1.schema.CoreSchemaRegistry();
registry.addPostTransform(core_1.schema.transforms.addUndefinedDefaults);
// Arguments to TestingArchitectHost are workspace and current directories.
// Since we don't use those, both are the same in this case.
architectHost = new testing_1.TestingArchitectHost(__dirname, __dirname);
architect = new architect_1.Architect(architectHost, registry);
// This will either take a Node package name, or a path to the directory
// for the package.json file.
yield architectHost.addBuilderFromPackage(join(__dirname, '..'));
console.log('#', Array.from(architectHost._builderMap.keys()));
jasmine.DEFAULT_TIMEOUT_INTERVAL = (1000 * 60) * 2; // 1 min
}));
it('The dev server starts successfully', () => __awaiter(void 0, void 0, void 0, function* () {
// Create a logger that keeps an array of all messages that were logged.
const logger = new core_1.logging.Logger('');
const logs = [];
logger.subscribe(ev => logs.push(ev.message));
let options = {
mainInOutput: 'testapp/test.ts',
NODE_ENV: 'development',
tsconfig: 'testapp/tsconfig.json',
watch: ['testapp'],
debug: false,
debugPort: 9229,
delayBetweenRestarts: 1.5,
copy: [
{ from: './dev/testapp/', to: './testos/' }
]
};
// A "run" can contain multiple outputs, and contains progress information.
const run = yield architect.scheduleBuilder('ts-node-builder:dev', options, { logger }); // We pass the logger for checking later.
// The "result" member is the next output of the runner.
// This is of type BuilderOutput.
yield run.result;
// Stop the builder from running. This really stops Architect from keeping
// the builder associated states in memory, since builders keep waiting
// to be scheduled.
yield run.stop();
}));
});
//# sourceMappingURL=index_spec.js.map