mirror of
https://github.com/withastro/astro.git
synced 2025-03-10 23:01:26 -05:00
chore: unskip date test
This commit is contained in:
parent
bacf458bdb
commit
998e2309c9
1 changed files with 2 additions and 2 deletions
|
@ -70,7 +70,7 @@ describe('astro:db', () => {
|
||||||
expect(new Date(themeAdded).getTime()).to.not.be.NaN;
|
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 request = new Request('http://example.com/');
|
||||||
const res = await app.render(request);
|
const res = await app.render(request);
|
||||||
const html = await res.text();
|
const html = await res.text();
|
||||||
|
@ -99,6 +99,6 @@ describe('astro:db', () => {
|
||||||
const themeDark = $($('.themes-list .theme-dark')[0]).text();
|
const themeDark = $($('.themes-list .theme-dark')[0]).text();
|
||||||
expect(themeDark).to.equal('dark mode');
|
expect(themeDark).to.equal('dark mode');
|
||||||
});
|
});
|
||||||
})
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue