Issue #442 Prettier rules not applied to some integration tests files (#445)

This commit is contained in:
Mark
2021-10-08 12:11:58 +02:00
committed by GitHub
parent fe0696569c
commit 3d891c9b4f
17 changed files with 425 additions and 421 deletions
@@ -1,19 +1,19 @@
import { NotificationService } from "medusa-interfaces";
import { NotificationService } from "medusa-interfaces"
class TestNotiService extends NotificationService {
static identifier = "test-not";
static identifier = "test-not"
constructor() {
super();
super()
}
async sendNotification() {
return Promise.resolve();
return Promise.resolve()
}
async resendNotification() {
return Promise.resolve();
return Promise.resolve()
}
}
export default TestNotiService;
export default TestNotiService