diff options
author | 2022-03-02 16:08:42 -0600 | |
---|---|---|
committer | 2022-03-02 16:08:42 -0600 | |
commit | 2482fe70b969625bb2ce1b0cbda1f0e4f89dd236 (patch) | |
tree | 8a3b5ecb990af373bda29950c22b6fcfb62033df /smoke/docs-main/public/make-scrollable-code-focusable.js | |
parent | caf9135c4843889c2773667d591d72d796e14c7b (diff) | |
download | astro-2482fe70b969625bb2ce1b0cbda1f0e4f89dd236.tar.gz astro-2482fe70b969625bb2ce1b0cbda1f0e4f89dd236.tar.zst astro-2482fe70b969625bb2ce1b0cbda1f0e4f89dd236.zip |
Refactor smoke tests to use submodules (#2702)
* chore: delete inlined repos
* refactor: move smoke tests to submodules
* chore: remove smoke sync action
* chore: update ci to fetch submodules for smoke test only
* chore: fix ci script
* feat: delete inlined smoke tests
* fix: update lockfile to exclude smoke tests
* chore(ci): ensure smoke tests can pass in CI
Diffstat (limited to 'smoke/docs-main/public/make-scrollable-code-focusable.js')
-rw-r--r-- | smoke/docs-main/public/make-scrollable-code-focusable.js | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/smoke/docs-main/public/make-scrollable-code-focusable.js b/smoke/docs-main/public/make-scrollable-code-focusable.js deleted file mode 100644 index f2b7030f7..000000000 --- a/smoke/docs-main/public/make-scrollable-code-focusable.js +++ /dev/null @@ -1,3 +0,0 @@ -Array.from(document.getElementsByTagName('pre')).forEach((element) => { - element.setAttribute('tabindex', '0'); -}); |