Skip to content

Commit

Permalink
Fix ineffectual smoke test (#361)
Browse files Browse the repository at this point in the history
  • Loading branch information
72636c authored Feb 22, 2021
1 parent 6e9eb6b commit ae29b0c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/famous-deers-cross.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'skuba': patch
---

**template/koa-rest-api:** Fix ineffectual smoke test
2 changes: 1 addition & 1 deletion template/koa-rest-api/src/api/smokeTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Middleware } from 'src/types/koa';
* Tests connectivity to ensure appropriate access and network configuration.
*/
export const smokeTestHandler: Middleware = async (ctx) => {
await Promise.all([smokeTestJobStorage]);
await Promise.all([smokeTestJobStorage()]);

ctx.body = '';
};

0 comments on commit ae29b0c

Please sign in to comment.