diff --git a/src/handlers/project/buildDeploy.screen.test.tsx b/src/handlers/project/buildDeploy.screen.test.tsx index 052b153e9..c283f0b2d 100644 --- a/src/handlers/project/buildDeploy.screen.test.tsx +++ b/src/handlers/project/buildDeploy.screen.test.tsx @@ -56,6 +56,9 @@ function fakeBackend(options: FakeBackendOptions = {}) { if (options.failure) throw options.failure; return options.result ?? { outputs: { RuntimeArn: "arn:runtime" } }; }, + async resolveProjectResources() { + return []; + }, async resolveDeployedResources() { return []; },