diff options
Diffstat (limited to 'server/sonar-web/config/jest/SetupTestEnvironment.ts')
-rw-r--r-- | server/sonar-web/config/jest/SetupTestEnvironment.ts | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/server/sonar-web/config/jest/SetupTestEnvironment.ts b/server/sonar-web/config/jest/SetupTestEnvironment.ts index b39e9ae9552..cf53e73e95f 100644 --- a/server/sonar-web/config/jest/SetupTestEnvironment.ts +++ b/server/sonar-web/config/jest/SetupTestEnvironment.ts @@ -17,9 +17,11 @@ * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -import ThemeContext from 'sonar-ui-common/components/theme'; -import SonarUiCommonInitializer, { DEFAULT_LOCALE } from 'sonar-ui-common/helpers/init'; import * as theme from '../../src/main/js/app/theme'; +import ThemeContext from '../../src/main/js/sonar-ui-common/components/theme'; +import SonarUiCommonInitializer, { + DEFAULT_LOCALE +} from '../../src/main/js/sonar-ui-common/helpers/init'; const content = document.createElement('div'); content.id = 'content'; |