Skip to content

Instantly share code, notes, and snippets.

@icebob
Last active May 4, 2018 17:32
Show Gist options
  • Save icebob/bbd6f3dd20e25a3528d7a759f7175a04 to your computer and use it in GitHub Desktop.
Save icebob/bbd6f3dd20e25a3528d7a759f7175a04 to your computer and use it in GitHub Desktop.
Test Moleculer service with mocking
const MyService = {
name: "my",
actions: {
getImportantData() {
return ctx.call("other.get")
.then(res => {
return {
id: 1,
data: res
};
});
}
}
}
describe("Test service", () => {
const broker = new ServiceBroker();
// Tested service
broker.createService(MyService);
const getAction = jest.fn((ctx) => {
return [1,2,3];
});
// Mock dependent service
broker.createService({
name: "other",
actions: {
get: getAction
}
});
it("should call 'other.get' and wrap the result", () => {
return broker.call("my.getImportantData")
.then(res => {
expect(res).toEqual({
id: 1,
data: [1,2,3]
});
expect(getAction).toHaveBeenCalledTimes(1);
})
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment