Skip to content

Commit

Permalink
fix(cli): fix jest/mocha integration test template
Browse files Browse the repository at this point in the history
  • Loading branch information
Romakita committed Jan 21, 2024
1 parent c229833 commit 1f16f9a
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 @@ -4,7 +4,7 @@ import { {{symbolName}} } from "./{{symbolPathBasename}}";
import { Server } from "{{relativeSrcPath}}/Server";

describe("{{symbolName}}", () => {
let request: SuperTest.SuperTest<SuperTest.Test>;
let request: SuperTest.Agent;

beforeEach(PlatformTest.bootstrap(Server, {
mount: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { {{symbolName}} } from "./{{symbolPathBasename}}";
import { Server } from "{{relativeSrcPath}}/Server";

describe("{{symbolName}}", () => {
let request: SuperTest.SuperTest<SuperTest.Test>;
let request: SuperTest.Agent;

beforeEach(PlatformTest.bootstrap(Server, {
mount: {
Expand Down

0 comments on commit 1f16f9a

Please sign in to comment.