0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-16 21:46:22 -05:00

chore: unskip date test

This commit is contained in:
bholmesdev 2024-02-14 17:15:38 -05:00
parent bacf458bdb
commit 998e2309c9

View file

@ -70,7 +70,7 @@ describe('astro:db', () => {
expect(new Date(themeAdded).getTime()).to.not.be.NaN;
});
it.skip('Defaults can be overridden for dates', async () => {
it('Defaults can be overridden for dates', async () => {
const request = new Request('http://example.com/');
const res = await app.render(request);
const html = await res.text();
@ -99,6 +99,6 @@ describe('astro:db', () => {
const themeDark = $($('.themes-list .theme-dark')[0]).text();
expect(themeDark).to.equal('dark mode');
});
})
});
});
});