Skip to content

Commit d88c1fb

Browse files
committed
fix: prettier
1 parent 48f636b commit d88c1fb

16 files changed

+22
-22
lines changed

test/functional/auth-decorator.spec.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ describe(``, () => {
4848
});
4949

5050
afterEach(done => {
51-
expressServer.close(done)
51+
expressServer.close(done);
5252
});
5353

5454
it('without roles', async () => {
@@ -107,7 +107,7 @@ describe(``, () => {
107107
});
108108

109109
afterEach(done => {
110-
expressServer.close(done)
110+
expressServer.close(done);
111111
});
112112

113113
it('without roles', async () => {
@@ -159,7 +159,7 @@ describe(``, () => {
159159
});
160160

161161
afterEach(done => {
162-
expressServer.close(done)
162+
expressServer.close(done);
163163
});
164164

165165
it('without roles', async () => {
@@ -202,7 +202,7 @@ describe(``, () => {
202202
});
203203

204204
afterEach(done => {
205-
expressServer.close(done)
205+
expressServer.close(done);
206206
});
207207

208208
it('custom errors', async () => {
@@ -239,7 +239,7 @@ describe(``, () => {
239239
});
240240

241241
afterEach(done => {
242-
expressServer.close(done)
242+
expressServer.close(done);
243243
});
244244

245245
it('custom errors', async () => {

test/functional/controller-base-routes.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ describe(``, () => {
4040
});
4141

4242
afterEach((done: DoneCallback) => {
43-
expressServer.close(done)
43+
expressServer.close(done);
4444
});
4545

4646
it('get should respond with proper status code, headers and body content', async () => {

test/functional/controller-methods.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ describe(``, () => {
154154
});
155155

156156
afterAll((done: DoneCallback) => {
157-
expressServer.close(done)
157+
expressServer.close(done);
158158
});
159159

160160
it('get should respond with proper status code, headers and body content', async () => {

test/functional/defaults.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ describe(``, () => {
6868
});
6969

7070
afterAll((done: DoneCallback) => {
71-
expressServer.close(done)
71+
expressServer.close(done);
7272
});
7373

7474
it('should return undefinedResultCode from defaults config for void function', async () => {

test/functional/express-custom-error-handling.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ describe(``, () => {
5353
});
5454

5555
afterAll((done: DoneCallback) => {
56-
expressServer.close(done)
56+
expressServer.close(done);
5757
});
5858

5959
it('should not call global error handler middleware if there was no errors', async () => {

test/functional/express-error-handling.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ describe(``, () => {
117117
});
118118

119119
afterAll((done: DoneCallback) => {
120-
expressServer.close(done)
120+
expressServer.close(done);
121121
});
122122

123123
it('should not call global error handler middleware if there was no errors', async () => {

test/functional/express-global-before-error-handling.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ describe(``, () => {
5858
});
5959

6060
afterAll((done: DoneCallback) => {
61-
expressServer.close(done)
61+
expressServer.close(done);
6262
});
6363

6464
it('should call global error handler middleware with CustomError', async () => {

test/functional/express-middlewares.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ describe(``, () => {
134134
});
135135

136136
afterAll((done: DoneCallback) => {
137-
expressServer.close(done)
137+
expressServer.close(done);
138138
});
139139

140140
it('should call a global middlewares', async () => {

test/functional/interceptors.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ describe(``, () => {
8484
});
8585

8686
afterAll((done: DoneCallback) => {
87-
expressServer.close(done)
87+
expressServer.close(done);
8888
});
8989

9090
it('custom interceptor function should replace returned content', async () => {

test/functional/json-controller-methods.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ describe(``, () => {
118118
});
119119

120120
afterAll(done => {
121-
expressServer.close(done)
121+
expressServer.close(done);
122122
});
123123

124124
it('get should respond with proper status code, headers and body content', async () => {

0 commit comments

Comments
 (0)