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

Add build test for checking export of latest #907

Open
birkskyum opened this issue Nov 17, 2024 · 0 comments · May be fixed by #908
Open

Add build test for checking export of latest #907

birkskyum opened this issue Nov 17, 2024 · 0 comments · May be fixed by #908
Labels
bug Something isn't working

Comments

@birkskyum
Copy link
Member

birkskyum commented Nov 17, 2024

Related to:

We should have a test in style-spec.test.ts like below to ensure the latest object is exported:

import {latest as latestInBundle} from '../../dist/index';

test('"latest" entry point should be defined', async () => {
expect(latestInBundle).toBeDefined();
});

We have a Jest 29 problem here, because it's a test of the index.d.ts file, which uses standard ESM import/export, and Jest doesn't support that, so I get:

"unexpected token 'export'"

image

We have two options - we can swap for Vitest now, or wait till Jest 30 is out, which is in progress, and try with that.

@birkskyum birkskyum added the bug Something isn't working label Nov 17, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant