Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,8 @@ describe('Data Modeling tab', function () {

expect(text).to.include('id objectId'.toLowerCase());
expect(text).to.include('i int');
expect(text).to.include('j int');
// Disabled as it's not recognized correctly by tesseract.js at the moment.
// expect(text).to.include('j int');
// it does not correctly recognize `iString` and only returns `String`.
Comment on lines +328 to 329
Copy link

Copilot AI Jul 10, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add a TODO or reference an issue ticket here to re-enable this assertion once Tesseract.js correctly recognizes 'j int', helping future maintainers track the fix.

Suggested change
// expect(text).to.include('j int');
// it does not correctly recognize `iString` and only returns `String`.
// TODO: Re-enable the following assertion once Tesseract.js correctly recognizes 'j int'.
// expect(text).to.include('j int');

Copilot uses AI. Check for mistakes.
// its already good enough to verify this for now and if it flakes
// more, we may need to revisit this test.
Expand Down
Loading