mirror of
https://github.com/withastro/astro.git
synced 2025-01-06 22:10:10 -05:00
12 lines
319 B
JavaScript
12 lines
319 B
JavaScript
import { expect } from 'chai';
|
|
|
|
describe('Import astro/app', async () => {
|
|
it('Successfully imports astro/app', async () => {
|
|
try {
|
|
await import('astro/app');
|
|
expect(true).to.be.true;
|
|
} catch (err) {
|
|
expect.fail(undefined, undefined, `Importing astro/app should not throw an error: ${err}`);
|
|
}
|
|
});
|
|
});
|