Closed thoom76 closed 4 months ago
thank you. We'll test this out.
Michael
@mobsense Fixed the typing issue, do you want me to create tests for the typing itself?
Is that possible?
Added the tests :+1:
@mobsense Idk if you guys are aware of it. When simply cloning the repo, making some changes and running npm run test
locally results in succeeding tests while the CI/CD pipeline fails on the same changes. Running nvm use 20 && npm ci && npm run build --if-present && npm run lint --if-present && npm run test:v2 && npm run test:v3
like the pipeline job did the work for me to get the same results.
Thank you for the patch.
@mobsense Idk if you guys are aware of it. When simply cloning the repo, making some changes and running
npm run test
locally results in succeeding tests while the CI/CD pipeline fails on the same changes. Runningnvm use 20 && npm ci && npm run build --if-present && npm run lint --if-present && npm run test:v2 && npm run test:v3
like the pipeline job did the work for me to get the same results.
Not really sure what you mean. The CI/CD seems to be working fine. When does it not work?
Context
Assume we have the following schema:
the following Entity type:
and the following code:
Previously
when we check the type of
brands
we're seeing that it has the typestring[]
instead of the typeBrand[]
New
When we check the type of
brands
we'll see that it has typeBrand[]