Skip to content

Commit

Permalink
fix: cjs to esm related
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukas Siemon committed Aug 8, 2023
1 parent 0f6fb66 commit ffd3061
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ describe('Testing dynamodb-local', { envVarsFile: 'env-vars.yml' }, () => {
process.env.TEST_SEED = Math.random();
const resolver = (await import('../serverless/.base/resolver.js')).default;

dataStack = resolver({
dataStack = await resolver({
stack: 'data',
region: process.env.AWS_REGION,
env: 'local'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ describe('Testing dynamodb-local', { envVarsFile: 'env-vars.yml' }, () => {
process.env.TEST_SEED = Math.random();
const resolver = (await import('../serverless/.base/resolver.js')).default;

dataStack = resolver({
dataStack = await resolver({
stack: 'data',
region: process.env.AWS_REGION,
env: 'local'
Expand Down

0 comments on commit ffd3061

Please sign in to comment.