Add event mocks

This commit is contained in:
Ethan Lane 2021-08-20 16:09:33 +01:00
parent 8ee5c62481
commit c3bcf76aac
2 changed files with 6 additions and 0 deletions

1
.gitignore vendored
View file

@ -109,6 +109,7 @@ events/
/bot.ts
!tests/__mocks/commands
!tests/__mocks/events
# Linux Environment Files
*.swp

View file

@ -0,0 +1,5 @@
import { Event } from "../../../src/type/event";
export class name extends Event {
public override channelCreate() {}
}