Skip to content

Commit

Permalink
maybe fake credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
kjs222 committed Jan 15, 2024
1 parent 4dfa2a6 commit d7f68e8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ jobs:
- 8000:8000

steps:
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: fake
aws-secret-access-key: fake
- uses: actions/checkout@v2
- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion backend/test/unit/api/votes-handler.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ describe("handler", () => {
const response = await handler({
queryStringParameters: { chamber: "bad" },
});
expect(response).to.deep.equal({
expect(response).to.deep.include({
statusCode: 400,
body: "Invalid chamber",
});
Expand Down

0 comments on commit d7f68e8

Please sign in to comment.