测试包中是否有正则表达式匹配器

Is there a regex matcher in the test package

我有一个像 <span class="percent-complete-bar" style="width: 85%; background: green;"></span> 这样的元素,我想检查 style 属性是否包含 width: xx%; 以及像 r'width: \d{1,3}%;'

这样的正则表达式
await bar.attributes['style']

returns width: 85%; background: green;

expect(await bar.attributes['style'], matches(r'width: \d{1,3}%;'));