Skip to content

Commit

Permalink
CI Fixes and Testing within PRs (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinthedang authored Jun 11, 2024
1 parent 1973b1d commit 5efc7f0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Builds
run-name: Validate Node and Docker Builds
on:
push:
pull_request:
branches:
- master

Expand Down
2 changes: 1 addition & 1 deletion tests/commands.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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')
})
})
2 changes: 1 addition & 1 deletion tests/events.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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')
})
})

0 comments on commit 5efc7f0

Please sign in to comment.