Skip to content

Commit

Permalink
fix: imports (#412)
Browse files Browse the repository at this point in the history
fix missing imports that were stubbed in tests
  • Loading branch information
jlangy authored Dec 3, 2024
1 parent 2b12f0c commit daf9825
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docker/kc-cron-job/utils/bceid-webservice.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ const { promisify } = require('util');
const { parseString } = require('xml2js');
const axios = require('axios');
const parseStringSync = promisify(parseString);

const _ = require('lodash');
const { log } = require('../helpers');
function getWebServiceInfo({ env = 'dev' }) {
const requestHeaders = {
'Content-Type': 'text/xml;charset=UTF-8',
Expand Down

0 comments on commit daf9825

Please sign in to comment.