本文整理汇总了TypeScript中http-server.createServer函数的典型用法代码示例。如果您正苦于以下问题:TypeScript createServer函数的具体用法?TypeScript createServer怎么用?TypeScript createServer使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了createServer函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: test
test('when a non-sourcemapped script is skipped via regex, it can be unskipped', async () => {
// Using this program, but run with sourcemaps disabled
const testProjectRoot = path.join(DATA_ROOT, 'calls-between-sourcemapped-files');
const sourceA = path.join(testProjectRoot, 'out/sourceA.js');
const sourceB = path.join(testProjectRoot, 'out/sourceB.js');
server = createServer({ root: testProjectRoot });
server.listen(7890);
const url = 'http://localhost:7890/index.html';
// Skip the full B generated script via launch config
const skipFiles = ['sourceB.js'];
const bpLineA = 5;
await dc.hitBreakpointUnverified({ url, sourceMaps: false, skipFiles, webRoot: testProjectRoot }, { path: sourceA, line: bpLineA });
// Step in, verify B sources are skipped
await dc.stepInRequest();
await dc.assertStoppedLocation('step', { path: sourceA, line: 2 });
await dc.send('toggleSkipFileStatus', { path: sourceB });
// Continue back to A, step in, should land in B
await dc.continueRequest();
await dc.assertStoppedLocation('breakpoint', { path: sourceA, line: bpLineA });
await dc.stepInRequest();
await dc.assertStoppedLocation('step', { path: sourceB, line: 2 });
});
示例2: createServer
(async() => {
let passed = 0, failed = 0;
const server = createServer({ root: "./build/website" });
server.listen();
const port = server.server.address().port;
const browser = await puppeteer.launch({
args: ["--no-sandbox", "--disable-setuid-sandbox"],
headless: !debug && !testdl
});
for (let i = 0; i < TESTS.length; i++) {
const test = TESTS[i];
if (await runTest(browser, port, test)) {
passed++;
} else {
failed++;
}
}
if (debug) {
await new Promise((res) => process.stdin.once("data", res));
}
await browser.close();
server.close();
console.log(`DONE. passed: ${passed}, failed: ${failed}`);
if (failed > 0) {
process.exit(1);
}
})();
示例3: test
test('Column BP is hit on correct column', async () => {
const testProjectRoot = path.join(DATA_ROOT, 'columns');
const scriptPath = path.join(testProjectRoot, 'src/script.ts');
server = createServer({ root: testProjectRoot });
server.listen(7890);
const url = 'http://localhost:7890/index.html';
const bpLine = 4;
const bpCol = 16;
await dc.hitBreakpointUnverified({ url, webRoot: testProjectRoot }, { path: scriptPath, line: bpLine, column: bpCol });
});
示例4: test
test('Hits a single breakpoint in a file on load', async () => {
const testProjectRoot = path.join(DATA_ROOT, 'breakOnLoad_javaScript');
const scriptPath = path.join(testProjectRoot, 'src/script.js');
server = createServer({ root: testProjectRoot });
server.listen(7890);
const url = 'http://localhost:7890/index.html';
const bpLine = 3;
const bpCol = 12;
await dc.hitBreakpointUnverified({ url, webRoot: testProjectRoot }, { path: scriptPath, line: bpLine, column: bpCol });
});
示例5: test
test('should stop on debugger statement in http://localhost', () => {
const testProjectRoot = path.join(DATA_ROOT, 'intervalDebugger');
const breakFile = path.join(testProjectRoot, 'src/app.ts');
const DEBUGGER_LINE = 2;
const server = createServer({ root: testProjectRoot });
server.listen(7890);
return Promise.all([
dc.configurationSequence(),
dc.launch({ url: 'http://localhost:7890', webRoot: testProjectRoot }),
dc.assertStoppedLocation('debugger_statement', { path: breakFile, line: DEBUGGER_LINE } )
])
.then(
() => server.close(),
e => {
server.close();
throw e;
});
});