Skip to content

Commit c849ace

Browse files
fix: WEB-269 Force deployment
1 parent 1dd6818 commit c849ace

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/http/http.module.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,13 @@ export class HttpModule implements OnModuleInit {
3232

3333
// Add request interceptor and response interceptor to log request infos
3434
const axios = this.httpService.axiosRef;
35+
3536
axios.interceptors.request.use((config) => {
3637
/* eslint-disable dot-notation, no-param-reassign */
3738
config['metadata'] = { ...config['metadata'], startDate: new Date() };
3839
return config;
3940
});
41+
4042
axios.interceptors.response.use(
4143
(response) => {
4244
const { config } = response;

tests/unit/steps/fixLinks.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ describe('ConfluenceProxy / fixLinks', () => {
233233
const step = fixLinks(config, http, jiraMockServiceFactory);
234234
const example =
235235
'<html><head></head><body>' +
236-
'<a data-card-appearance="block" href="https://www.google.com/about" class="external-link">Example</a>' +
236+
'<a data-card-appearance="block" href="https://www.google.com/about" class="external-link">Example</a>' +
237237
'</body></html>';
238238
context.setHtmlBody(example);
239239
await step(context);

0 commit comments

Comments
 (0)