CI Fixes and Testing within PRs (#64)

This commit is contained in:
Kevin Dang
2024-06-10 20:57:42 -07:00
committed by GitHub
parent 1973b1d3ae
commit 5efc7f00f2
3 changed files with 3 additions and 3 deletions

View File

@@ -22,6 +22,6 @@ describe('#commands', () => {
// test specific commands in the object
it('references specific commands', () => {
const commandsString = commands.map(e => e.name).join(', ')
expect(commandsString).toBe('thread, message-style, message-stream, toggle-chat, shutoff, modify-capacity')
expect(commandsString).toBe('thread, private-thread, message-style, message-stream, toggle-chat, shutoff, modify-capacity')
})
})

View File

@@ -18,6 +18,6 @@ describe('#events', () => {
// test specific events in the object
it('references specific events', () => {
const eventsString = events.map(e => e.key.toString()).join(', ')
expect(eventsString).toBe('ready, messageCreate, interactionCreate')
expect(eventsString).toBe('ready, messageCreate, interactionCreate, threadDelete')
})
})