mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Use the default import path for jest-dom.
This commit is contained in:
parent
d0df81a8df
commit
6cff91e17d
2 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
import { render, screen } from '@testing-library/react'
|
import { render, screen } from '@testing-library/react'
|
||||||
import '@testing-library/jest-dom/extend-expect'
|
import '@testing-library/jest-dom'
|
||||||
import Linkify from './Linkify'
|
import Linkify from './Linkify'
|
||||||
|
|
||||||
const URL = 'http://www.example.com'
|
const URL = 'http://www.example.com'
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
// allows you to do things like:
|
// allows you to do things like:
|
||||||
// expect(element).toHaveTextContent(/react/i)
|
// expect(element).toHaveTextContent(/react/i)
|
||||||
// learn more: https://github.com/testing-library/jest-dom
|
// learn more: https://github.com/testing-library/jest-dom
|
||||||
import '@testing-library/jest-dom/extend-expect'
|
import '@testing-library/jest-dom'
|
||||||
|
|
||||||
const localStorageMock = (function () {
|
const localStorageMock = (function () {
|
||||||
let store = {}
|
let store = {}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue