Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[chore] remove missing export test suite #2284

Merged
merged 1 commit into from
Aug 25, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

Empty file.
15 changes: 0 additions & 15 deletions packages/kit/src/core/config/test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,21 +71,6 @@ test('load default config (esm)', async () => {
await testLoadDefaultConfig('default-esm');
});

test('errors on loading config without default export', async () => {
let errorMessage = null;
try {
const cwd = join(__dirname, 'fixtures', 'export-missing');
await load_config({ cwd });
} catch (e) {
errorMessage = e.message;
}

assert.equal(
errorMessage,
'Your config is missing default exports. Make sure to include "export default config;"'
);
});

test('errors on loading config with incorrect default export', async () => {
let errorMessage = null;
try {
Expand Down