UNPKG
gaga-js-utils
Version:
latest (1.0.0)
1.0.0
js tools
gaga-js-utils
/
src
/
matchingAllImg
/
__tests__
/
index.spec.js
7 lines
•
303 B
JavaScript
View Raw
1
2
3
4
5
6
7
describe
(
"匹配字符串中的src"
,
() =>
{
it
(
"测试matchingAllImg方法"
,
() =>
{
const
{ matchingAllImg } =
require
(
"../index"
);
const
str =
`<img src="baidu.com"/><img src="tengxun.com"/>`
expect
(
matchingAllImg
(str)).
toEqual
([
'baidu.com'
,
'tengxun.com'
]); }); });