Skip to content
Snippets Groups Projects
Commit 1b501285 authored by vkovtun's avatar vkovtun
Browse files

SSDM-13579: Fixing incorrect reference to server-data-store-facade.js.

parent 993d34ff
No related branches found
No related tags found
1 merge request!40SSDM-13578 : 2PT : Database and V3 Implementation - include the new AFS "free"...
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
onerror="loadError()" onerror="loadError()"
></script> ></script>
<script src="/openbis/resources/api/v3/require.js"></script> <script src="/openbis/resources/api/v3/require.js"></script>
<script src="/openbis/resources/api/data-store-server/server-data-store-facade.js"></script> <script src="/openbis/resources/api/data-store-server/api/server-data-store-facade.js"></script>
</head> </head>
<body> <body>
<div id="app"></div> <div id="app"></div>
......
...@@ -22,6 +22,7 @@ module.exports = { ...@@ -22,6 +22,7 @@ module.exports = {
'<rootDir>/src/js', '<rootDir>/src/js',
'<rootDir>/srcTest/js', '<rootDir>/srcTest/js',
'<rootDir>/srcV3', '<rootDir>/srcV3',
'<rootDir>/srcDss',
'<rootDir>/node_modules' '<rootDir>/node_modules'
], ],
moduleNameMapper: { moduleNameMapper: {
...@@ -34,7 +35,8 @@ module.exports = { ...@@ -34,7 +35,8 @@ module.exports = {
'^@src/resources(.*)$': '<rootDir>/srcTest/js/mockResources.js', '^@src/resources(.*)$': '<rootDir>/srcTest/js/mockResources.js',
'^@src/(.*)$': '<rootDir>/src/$1', '^@src/(.*)$': '<rootDir>/src/$1',
'^@srcTest/(.*)$': '<rootDir>/srcTest/$1', '^@srcTest/(.*)$': '<rootDir>/srcTest/$1',
'^@srcV3/(.*)$': '<rootDir>/srcV3/$1' '^@srcV3/(.*)$': '<rootDir>/srcV3/$1',
'^@srcDss/(.*)$': '<rootDir>/srcDss/$1'
}, },
transformIgnorePatterns: ['<rootDir>/node_modules/(?!(auto-bind|date-fns))'], transformIgnorePatterns: ['<rootDir>/node_modules/(?!(auto-bind|date-fns))'],
slowTestThreshold: 30 slowTestThreshold: 30
......
...@@ -43,7 +43,8 @@ module.exports = { ...@@ -43,7 +43,8 @@ module.exports = {
alias: { alias: {
'@src': path.resolve(__dirname, 'src/'), '@src': path.resolve(__dirname, 'src/'),
'@srcTest': path.resolve(__dirname, 'srcTest/'), '@srcTest': path.resolve(__dirname, 'srcTest/'),
'@srcV3': path.resolve(__dirname, 'srcV3/') '@srcV3': path.resolve(__dirname, 'srcV3/'),
'@srcDss': path.resolve(__dirname, 'srcDss/')
}, },
fallback: { fallback: {
stream: require.resolve('stream-browserify'), stream: require.resolve('stream-browserify'),
......
...@@ -67,7 +67,8 @@ module.exports = { ...@@ -67,7 +67,8 @@ module.exports = {
alias: { alias: {
'@src': path.resolve(__dirname, 'src/'), '@src': path.resolve(__dirname, 'src/'),
'@srcTest': path.resolve(__dirname, 'srcTest/'), '@srcTest': path.resolve(__dirname, 'srcTest/'),
'@srcV3': path.resolve(__dirname, 'srcV3/') '@srcV3': path.resolve(__dirname, 'srcV3/'),
'@srcDss': path.resolve(__dirname, 'srcDss/')
}, },
fallback: { fallback: {
stream: require.resolve('stream-browserify'), stream: require.resolve('stream-browserify'),
......
...@@ -43,7 +43,8 @@ module.exports = { ...@@ -43,7 +43,8 @@ module.exports = {
alias: { alias: {
'@src': path.resolve(__dirname, 'src/'), '@src': path.resolve(__dirname, 'src/'),
'@srcTest': path.resolve(__dirname, 'srcTest/'), '@srcTest': path.resolve(__dirname, 'srcTest/'),
'@srcV3': path.resolve(__dirname, 'srcV3/') '@srcV3': path.resolve(__dirname, 'srcV3/'),
'@srcDss': path.resolve(__dirname, 'srcDss/')
}, },
fallback: { fallback: {
stream: require.resolve('stream-browserify'), stream: require.resolve('stream-browserify'),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment