fix(core): update

This commit is contained in:
2023-07-13 03:19:11 +02:00
parent 74e1df6824
commit 37e6d94c9f
12 changed files with 1949 additions and 1408 deletions

View File

@@ -2,7 +2,7 @@ import * as plugins from './tstest.plugins.js';
import * as paths from './tstest.paths.js';
import * as logPrefixes from './tstest.logprefixes.js';
import { coloredString as cs } from '@pushrocks/consolecolor';
import { coloredString as cs } from '@push.rocks/consolecolor';
import { TestDirectory } from './tstest.classes.testdirectory.js';
import { TapCombinator } from './tstest.classes.tap.combinator.js';
@@ -105,13 +105,13 @@ export class TsTest {
});
// lets create a server
const server = new plugins.smartexpress.Server({
const server = new plugins.typedserver.servertools.Server({
cors: true,
port: 3007,
});
server.addRoute(
'/test',
new plugins.smartexpress.Handler('GET', async (req, res) => {
new plugins.typedserver.servertools.Handler('GET', async (req, res) => {
res.type('.html');
res.write(`
<html>
@@ -126,7 +126,7 @@ export class TsTest {
res.end();
})
);
server.addRoute('*', new plugins.smartexpress.HandlerStatic(tsbundleCacheDirPath));
server.addRoute('*', new plugins.typedserver.servertools.HandlerStatic(tsbundleCacheDirPath));
await server.start();
// lets do the browser bit