Skip to content

Commit

Permalink
Fix model tests
Browse files Browse the repository at this point in the history
  • Loading branch information
thekevinscott committed Nov 21, 2023
1 parent 83729da commit a6fe5a2
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 14 deletions.
48 changes: 35 additions & 13 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion test/integration/model/tests/all-models.clientside.mts
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,9 @@ describe('Clientside model integration tests', () => {
});


const directModels = await Promise.all((await packagesWithModels).map(async ({ packageDirectoryName, modelName, ...rest }) => {
const directModels = await Promise.all((await packagesWithModels).filter(m => {
return m;
}).map(async ({ packageDirectoryName, modelName, ...rest }) => {
const [
packageJSON,
umdNames,
Expand Down

0 comments on commit a6fe5a2

Please sign in to comment.