0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-01-06 22:10:10 -05:00
astro/packages/astro/test/import-app.test.js
2023-08-01 23:37:19 +00:00

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}`);
}
});
});