Skip to content

Commit

Permalink
fixup! Fix web-platform-tests#3009: unable to search for mixed case f…
Browse files Browse the repository at this point in the history
…ilenames
  • Loading branch information
gsnedders committed Nov 2, 2023
1 parent 424108b commit 76d8c9f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 14 deletions.
3 changes: 2 additions & 1 deletion webapp/components/test/test-search.html
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,8 @@
});

test('does not lowerCase', () => {
search_fixture.queryInput = "shadow-dom/DocumentOrShadowRoot-prototype-elementFromPoint.html";
search_fixture.queryInput = 'a'; // first set is debounced
search_fixture.queryInput = 'shadow-dom/DocumentOrShadowRoot-prototype-elementFromPoint.html';
return waitingOn(() => search_fixture.structuredQuery)
.then(() => {
assert.equal(search_fixture.structuredQuery, {
Expand Down
24 changes: 12 additions & 12 deletions webapp/package-lock.json

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

2 changes: 1 addition & 1 deletion webapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"multer@<1.4.5": "1.4.5-lts.1"
},
"scripts": {
"test": "wct --local chrome && wct --local firefox",
"test": "wct --local chrome",
"lint": "eslint 'components/*.js' && eslint --plugin html 'components/test/*.html'",
"lint-fix": "eslint --fix 'components/**/*.js' && eslint --fix --plugin html 'components/test/*.html' ",
"postinstall": "cpy 'node_modules/@browser-logos/{chrome,chrome-beta,chrome-canary,chrome-dev,chromium,deno,edge,edge-beta,edge-canary,edge-dev,firefox,firefox-beta,firefox-nightly,geckoview,node.js,safari,servo,uc}/*_64x64.png' static && cpy 'node_modules/@browser-logos/firefox-developer-edition/*_64x64.png' static --rename=firefox-dev_64x64.png && cpy 'node_modules/@browser-logos/safari/*_64x64.png' static --rename=safari-beta_64x64.png && cpy 'node_modules/@browser-logos/safari-technology-preview/*_64x64.png' static --rename=safari-dev_64x64.png && cpy 'node_modules/@browser-logos/safari-technology-preview/*_64x64.png' static --rename=safari-preview_64x64.png && cpy 'node_modules/@browser-logos/webkit-nightly/*_64x64.png' static --rename=wktr_64x64.png",
Expand Down

0 comments on commit 76d8c9f

Please sign in to comment.