Skip to content

Commit

Permalink
fix(api): 🐛 Fix for changed HTTP response code in Emoji API
Browse files Browse the repository at this point in the history
  • Loading branch information
CPlusPatch committed Nov 10, 2024
1 parent b064585 commit bfa44e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
run: bun install

- name: Build with VitePress
run: bun run docs:Build
run: bun run docs:build

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
Expand Down
2 changes: 1 addition & 1 deletion api/api/v1/custom_emojis/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ beforeAll(async () => {
}),
});

expect(response.status).toBe(200);
expect(response.status).toBe(201);

await fakeRequest("/api/v1/emojis", {
headers: {
Expand Down

0 comments on commit bfa44e3

Please sign in to comment.