Skip to content

Commit

Permalink
refactor: apply formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
relliv committed Jun 11, 2022
1 parent a5ac24f commit dff481c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions config/fileTransformer.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// source: https://jestjs.io/docs/code-transformation#examples

const path = require('path');
const path = require('path')

module.exports = {
process(src, filename, config, options) {
return 'module.exports = ' + JSON.stringify(path.basename(filename)) + ';';
process(src, filename) {
return 'module.exports = ' + JSON.stringify(path.basename(filename)) + ';'
},
};
}

0 comments on commit dff481c

Please sign in to comment.