Skip to content

Commit

Permalink
✅ Add more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dej611 committed Mar 20, 2024
1 parent dbb3d08 commit f2f04f3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,10 @@
"query": "from index*",
"error": false
},
{
"query": "from *a_i*dex*",
"error": false
},
{
"query": "from in*ex*",
"error": false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -428,6 +428,7 @@ describe('validation logic', () => {
]);
testErrorsAndWarnings(`from ind*, other*`, []);
testErrorsAndWarnings(`from index*`, []);
testErrorsAndWarnings(`from *a_i*dex*`, []);
testErrorsAndWarnings(`from in*ex*`, []);
testErrorsAndWarnings(`from *n*ex`, []);
testErrorsAndWarnings(`from *n*ex*`, []);
Expand Down

0 comments on commit f2f04f3

Please sign in to comment.