1 |
import Application from "@framework/app/Application"; |
2 |
import { Logger } from "@framework/log/Logger"; |
3 |
import path from "path"; |
4 |
import { createClient } from "./client.mock"; |
5 |
|
6 |
export const createApplication = () => { |
7 |
const client = createClient(); |
8 |
const application = new Application(path.resolve(__dirname, "../../..")); |
9 |
|
10 |
application.setClient(client); |
11 |
application.setLogger(new Logger("test_system", true)); |
12 |
application.container.bind(Application, { |
13 |
key: "application", |
14 |
singleton: true, |
15 |
factory: () => application |
16 |
}); |
17 |
|
18 |
return application; |
19 |
}; |