Version 1.0.4
@themost/test
implements two new methods:
- Use
getApplication()
in order to init test api server:
import {getApplication} from '@themost/test';
const app = getApplication();
- Use
serveApplication()
in order to serve test api server:
import {getApplication, serveApplication} from '@themost/test';
const app = getApplication();
const server = serveApplication(app);