We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed278ac commit 89553b7Copy full SHA for 89553b7
.github/workflows/ci.yml
@@ -66,6 +66,10 @@ jobs:
66
- name: Create coverage folder
67
run: mkdir -p ./coverage
68
- run: npm test
69
+ env:
70
+ AWS_REGION: us-east-1
71
+ AWS_ACCESS_KEY_ID: test
72
+ AWS_SECRET_ACCESS_KEY: test
73
- name: Coveralls
74
uses: coverallsapp/github-action@1.1.3
75
continue-on-error: true
packages/dynamoose/test/_setup.js
@@ -1,10 +1,7 @@
1
const ModelStore = require("../dist/ModelStore").default;
2
-const dynamoose = require("../dist");
3
4
beforeEach(() => {
5
ModelStore.clear();
6
- // Ensure tests always use DynamoDB Local
7
- dynamoose.aws.ddb.local("http://localhost:8000");
8
});
9
10
0 commit comments