0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-01-27 22:19:04 -05:00

chore: fix missed failing test (#11115)

This commit is contained in:
Emanuele Stoppa 2024-05-22 12:02:51 +01:00 committed by GitHub
parent e1884ea6a8
commit 6988f1d278
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -36,7 +36,7 @@ describe('astro:db', () => {
const html = await fixture.readFile('/run/index.html');
const $ = cheerioLoad(html);
expect($('#row').text()).to.equal('1');
assert.match($('#row').text(), /1/)
});
});
});