Skip to content

Commit 3300add

Browse files
committed
fixup unrelated typescript error in test
1 parent 5c969fa commit 3300add

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

test/unit-tests/index-test.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,12 @@ const constructPluginResources = (logForwarding, functions?) => {
5858
const config = {
5959
commands: [],
6060
options: {},
61+
stage: 'test-stage',
6162
};
6263
const serverless = createServerless(config, {
6364
provider: {
6465
region: 'us-moon-1',
65-
stage: 'test-stage',
66+
stage: config.stage,
6667
},
6768
custom: {
6869
logForwarding,
@@ -89,11 +90,12 @@ const constructPluginNoResources = (logForwarding) => {
8990
const config = {
9091
commands: [],
9192
options: {},
93+
stage: 'test-stage',
9294
};
9395
const serverless = createServerless(config, {
9496
provider: {
9597
region: 'us-moon-1',
96-
stage: 'test-stage',
98+
stage: config.stage,
9799
},
98100
custom: {
99101
logForwarding,

0 commit comments

Comments
 (0)