我正在使用Angular 7,并尝试使用ngApimock模拟我的API调用,但是我不确定在哪里包括这部分 这样,当我使用ng serve启动服务器时,模拟就会自动启动。
ngApimock.run({
"baseUrl": "http://<NODE_SERVER_API_URL>:<PORT>", // If not informed browser.baseUrl will be used
"src": "test/mocks",
"outputDir": "path/to/outputDir",
"done": function() {
// async
}
});