mirror of
https://github.com/elyby/accounts-frontend.git
synced 2025-05-31 14:11:58 +05:30
Change prettier rules
This commit is contained in:
@@ -5,15 +5,15 @@ const path = require('path');
|
||||
const { transform } = require('webpack-utils/intl-loader');
|
||||
|
||||
module.exports = {
|
||||
/**
|
||||
* @param {string} src - transformed module source code
|
||||
* @param {string} filename - transformed module file path
|
||||
* @param {{[key: string]: any}} config - jest config
|
||||
* @param {{instrument: boolean}} options - additional options
|
||||
*
|
||||
* @returns {string}
|
||||
*/
|
||||
process(src, filename, config, options) {
|
||||
return transform(src, filename, path.resolve(`${__dirname}/../../..`));
|
||||
},
|
||||
/**
|
||||
* @param {string} src - transformed module source code
|
||||
* @param {string} filename - transformed module file path
|
||||
* @param {{[key: string]: any}} config - jest config
|
||||
* @param {{instrument: boolean}} options - additional options
|
||||
*
|
||||
* @returns {string}
|
||||
*/
|
||||
process(src, filename, config, options) {
|
||||
return transform(src, filename, path.resolve(`${__dirname}/../../..`));
|
||||
},
|
||||
};
|
||||
|
@@ -2,19 +2,19 @@ import 'app/polyfills';
|
||||
import '@testing-library/jest-dom';
|
||||
|
||||
if (!window.localStorage) {
|
||||
window.localStorage = {
|
||||
getItem(key) {
|
||||
return this[key] || null;
|
||||
},
|
||||
setItem(key, value) {
|
||||
this[key] = value;
|
||||
},
|
||||
removeItem(key) {
|
||||
delete this[key];
|
||||
},
|
||||
};
|
||||
window.localStorage = {
|
||||
getItem(key) {
|
||||
return this[key] || null;
|
||||
},
|
||||
setItem(key, value) {
|
||||
this[key] = value;
|
||||
},
|
||||
removeItem(key) {
|
||||
delete this[key];
|
||||
},
|
||||
};
|
||||
|
||||
window.sessionStorage = {
|
||||
...window.localStorage,
|
||||
};
|
||||
window.sessionStorage = {
|
||||
...window.localStorage,
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user