Skip to content

Commit 1513d57

Browse files
authored
Merge pull request #1295 from RedisInsight/fe/feature/RI-3558_extrapolate-results
#RI-3558 - add extrapolation for memory analysis
2 parents da691cb + 4be9ca1 commit 1513d57

File tree

22 files changed

+1561
-265
lines changed

22 files changed

+1561
-265
lines changed

jest.config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ module.exports = {
55
testURL: 'http://localhost/',
66
runner: 'groups',
77
moduleNameMapper: {
8-
'\\.(jpg|jpeg|png|ico|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$':
8+
'\\.(jpg|jpeg|png|ico|gif|eot|otf|webp|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$':
99
'<rootDir>/redisinsight/__mocks__/fileMock.js',
10+
'\\.svg': '<rootDir>/redisinsight/__mocks__/svg.js',
1011
'\\.(css|less|sass|scss)$': 'identity-obj-proxy',
1112
'uiSrc/(.*)': '<rootDir>/redisinsight/ui/src/$1',
1213
'monaco-editor': '<rootDir>/redisinsight/__mocks__/monacoMock.js',

redisinsight/__mocks__/svg.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export default 'SvgrURL'
2+
export const ReactComponent = 'div'

0 commit comments

Comments
 (0)