Files
medusa-store/integration-tests/api/src/services/test-not.js
2021-02-19 08:47:24 +01:00

20 lines
345 B
JavaScript

import { NotificationService } from "medusa-interfaces";
class TestNotiService extends NotificationService {
static identifier = "test-not";
constructor() {
super();
}
async sendNotification() {
return Promise.resolve();
}
async resendNotification() {
return Promise.resolve();
}
}
export default TestNotiService;