Skip to content

Version 1.0.4

Compare
Choose a tag to compare
@kbarbounakis kbarbounakis released this 12 Dec 17:14
· 55 commits to master since this release
2372f98

@themost/test implements two new methods:

  1. Use getApplication() in order to init test api server:
import {getApplication} from '@themost/test';
const app = getApplication();
  1. Use serveApplication() in order to serve test api server:
import {getApplication, serveApplication} from '@themost/test';
const app = getApplication();
const server = serveApplication(app);