From 41c70ae50359247f972833feba86698980b647a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Mart=C3=ADn=20Seery?= Date: Wed, 27 Apr 2022 15:43:31 -0300 Subject: [PATCH] chore: remove deprecation message when using cheerio's default export (#3225) --- packages/astro/test/0-css.test.js | 2 +- packages/astro/test/astro-assets.test.js | 2 +- packages/astro/test/astro-attrs.test.js | 2 +- packages/astro/test/astro-basic.test.js | 2 +- packages/astro/test/astro-children.test.js | 2 +- packages/astro/test/astro-class-list.test.js | 2 +- packages/astro/test/astro-component-code.test.js | 2 +- packages/astro/test/astro-css-bundling-import.test.js | 2 +- packages/astro/test/astro-css-bundling.test.js | 2 +- packages/astro/test/astro-directives.test.js | 2 +- packages/astro/test/astro-doctype.test.js | 2 +- packages/astro/test/astro-dynamic.test.js | 2 +- packages/astro/test/astro-expr.test.js | 2 +- packages/astro/test/astro-fallback.test.js | 2 +- packages/astro/test/astro-global.test.js | 2 +- packages/astro/test/astro-markdown-css.test.js | 2 +- packages/astro/test/astro-markdown-drafts.test.js | 2 +- packages/astro/test/astro-markdown-plugins.test.js | 2 +- packages/astro/test/astro-markdown-shiki.test.js | 2 +- packages/astro/test/astro-markdown-url.test.js | 2 +- packages/astro/test/astro-markdown.test.js | 2 +- packages/astro/test/astro-pages.test.js | 2 +- packages/astro/test/astro-pagination.test.js | 2 +- packages/astro/test/astro-partial-html.test.js | 2 +- packages/astro/test/astro-scripts.test.js | 2 +- packages/astro/test/astro-slots.test.js | 2 +- packages/astro/test/dev-routing.test.js | 2 +- packages/astro/test/fetch.test.js | 2 +- packages/astro/test/lit-element.test.js | 2 +- packages/astro/test/markdown.test.js | 2 +- packages/astro/test/postcss.test.js | 2 +- packages/astro/test/preact-component.test.js | 2 +- packages/astro/test/remote-css.test.js | 2 +- packages/astro/test/slots-preact.test.js | 2 +- packages/astro/test/slots-react.test.js | 2 +- packages/astro/test/slots-solid.test.js | 2 +- packages/astro/test/slots-svelte.test.js | 2 +- packages/astro/test/slots-vue.test.js | 2 +- packages/astro/test/solid-component.test.js | 2 +- packages/astro/test/static-build-code-component.test.js | 2 +- packages/astro/test/static-build-frameworks.test.js | 2 +- packages/astro/test/static-build-page-url-format.test.js | 2 +- packages/astro/test/svelte-component.test.js | 2 +- packages/astro/test/tailwindcss.test.js | 2 +- packages/astro/test/vue-component.test.js | 2 +- 45 files changed, 45 insertions(+), 45 deletions(-) diff --git a/packages/astro/test/0-css.test.js b/packages/astro/test/0-css.test.js index b16e22f395..65efdeba29 100644 --- a/packages/astro/test/0-css.test.js +++ b/packages/astro/test/0-css.test.js @@ -5,7 +5,7 @@ */ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; let fixture; diff --git a/packages/astro/test/astro-assets.test.js b/packages/astro/test/astro-assets.test.js index a003f70c92..7daa4aaa3d 100644 --- a/packages/astro/test/astro-assets.test.js +++ b/packages/astro/test/astro-assets.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; import srcsetParse from 'srcset-parse'; diff --git a/packages/astro/test/astro-attrs.test.js b/packages/astro/test/astro-attrs.test.js index ad52782bbc..d2d5859506 100644 --- a/packages/astro/test/astro-attrs.test.js +++ b/packages/astro/test/astro-attrs.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; describe('Attributes', async () => { diff --git a/packages/astro/test/astro-basic.test.js b/packages/astro/test/astro-basic.test.js index e6d59af495..5c350ce1f2 100644 --- a/packages/astro/test/astro-basic.test.js +++ b/packages/astro/test/astro-basic.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; describe('Astro basics', () => { diff --git a/packages/astro/test/astro-children.test.js b/packages/astro/test/astro-children.test.js index 3d6ff54c00..8a396cce49 100644 --- a/packages/astro/test/astro-children.test.js +++ b/packages/astro/test/astro-children.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; describe('Component children', () => { diff --git a/packages/astro/test/astro-class-list.test.js b/packages/astro/test/astro-class-list.test.js index 24a6ff81e3..05e268f90f 100644 --- a/packages/astro/test/astro-class-list.test.js +++ b/packages/astro/test/astro-class-list.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; describe('Class List', async () => { diff --git a/packages/astro/test/astro-component-code.test.js b/packages/astro/test/astro-component-code.test.js index 783fa734d0..e9efb4ca9f 100644 --- a/packages/astro/test/astro-component-code.test.js +++ b/packages/astro/test/astro-component-code.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; describe('', () => { diff --git a/packages/astro/test/astro-css-bundling-import.test.js b/packages/astro/test/astro-css-bundling-import.test.js index 665410c1fa..38cb7216bb 100644 --- a/packages/astro/test/astro-css-bundling-import.test.js +++ b/packages/astro/test/astro-css-bundling-import.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; describe('CSS Bundling (ESM import)', () => { diff --git a/packages/astro/test/astro-css-bundling.test.js b/packages/astro/test/astro-css-bundling.test.js index ea589816eb..7b3c703843 100644 --- a/packages/astro/test/astro-css-bundling.test.js +++ b/packages/astro/test/astro-css-bundling.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; // note: the hashes should be deterministic, but updating the file contents will change hashes diff --git a/packages/astro/test/astro-directives.test.js b/packages/astro/test/astro-directives.test.js index e2223e6373..b23fbd848b 100644 --- a/packages/astro/test/astro-directives.test.js +++ b/packages/astro/test/astro-directives.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; describe('Directives', async () => { diff --git a/packages/astro/test/astro-doctype.test.js b/packages/astro/test/astro-doctype.test.js index 8ae555f2a2..e402c137f3 100644 --- a/packages/astro/test/astro-doctype.test.js +++ b/packages/astro/test/astro-doctype.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; describe('Doctype', () => { diff --git a/packages/astro/test/astro-dynamic.test.js b/packages/astro/test/astro-dynamic.test.js index d133fba29c..1b8b323ee6 100644 --- a/packages/astro/test/astro-dynamic.test.js +++ b/packages/astro/test/astro-dynamic.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; describe('Dynamic components', () => { diff --git a/packages/astro/test/astro-expr.test.js b/packages/astro/test/astro-expr.test.js index 0a514e48f5..c3c71450f5 100644 --- a/packages/astro/test/astro-expr.test.js +++ b/packages/astro/test/astro-expr.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; describe('Expressions', () => { diff --git a/packages/astro/test/astro-fallback.test.js b/packages/astro/test/astro-fallback.test.js index 9e9752c8ac..dd0c793fbd 100644 --- a/packages/astro/test/astro-fallback.test.js +++ b/packages/astro/test/astro-fallback.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; describe('Dynamic component fallback', () => { diff --git a/packages/astro/test/astro-global.test.js b/packages/astro/test/astro-global.test.js index 46564ed0d0..17520dacf0 100644 --- a/packages/astro/test/astro-global.test.js +++ b/packages/astro/test/astro-global.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; describe('Astro.*', () => { diff --git a/packages/astro/test/astro-markdown-css.test.js b/packages/astro/test/astro-markdown-css.test.js index 04e2746338..40710ce852 100644 --- a/packages/astro/test/astro-markdown-css.test.js +++ b/packages/astro/test/astro-markdown-css.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; let fixture; diff --git a/packages/astro/test/astro-markdown-drafts.test.js b/packages/astro/test/astro-markdown-drafts.test.js index 2c6e60be82..5be12aa82e 100644 --- a/packages/astro/test/astro-markdown-drafts.test.js +++ b/packages/astro/test/astro-markdown-drafts.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; describe('Astro Markdown with draft posts disabled', () => { diff --git a/packages/astro/test/astro-markdown-plugins.test.js b/packages/astro/test/astro-markdown-plugins.test.js index 35a3f829d4..30e0d7f743 100644 --- a/packages/astro/test/astro-markdown-plugins.test.js +++ b/packages/astro/test/astro-markdown-plugins.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; import addClasses from './fixtures/astro-markdown-plugins/add-classes.mjs'; diff --git a/packages/astro/test/astro-markdown-shiki.test.js b/packages/astro/test/astro-markdown-shiki.test.js index baee0348e7..7a03fb390e 100644 --- a/packages/astro/test/astro-markdown-shiki.test.js +++ b/packages/astro/test/astro-markdown-shiki.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; describe('Astro Markdown Shiki', () => { diff --git a/packages/astro/test/astro-markdown-url.test.js b/packages/astro/test/astro-markdown-url.test.js index 54ce8bfba4..01d777b9f7 100644 --- a/packages/astro/test/astro-markdown-url.test.js +++ b/packages/astro/test/astro-markdown-url.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; describe('Astro Markdown URL', () => { diff --git a/packages/astro/test/astro-markdown.test.js b/packages/astro/test/astro-markdown.test.js index 7d44978228..cfbf33b0aa 100644 --- a/packages/astro/test/astro-markdown.test.js +++ b/packages/astro/test/astro-markdown.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; describe('Astro Markdown', () => { diff --git a/packages/astro/test/astro-pages.test.js b/packages/astro/test/astro-pages.test.js index 3a1a504ad1..0539388dd1 100644 --- a/packages/astro/test/astro-pages.test.js +++ b/packages/astro/test/astro-pages.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; describe('Pages', () => { diff --git a/packages/astro/test/astro-pagination.test.js b/packages/astro/test/astro-pagination.test.js index 80c460f94c..563b66492e 100644 --- a/packages/astro/test/astro-pagination.test.js +++ b/packages/astro/test/astro-pagination.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; describe('Pagination', () => { diff --git a/packages/astro/test/astro-partial-html.test.js b/packages/astro/test/astro-partial-html.test.js index bc50df41b8..15fc5ee36c 100644 --- a/packages/astro/test/astro-partial-html.test.js +++ b/packages/astro/test/astro-partial-html.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; describe('Partial HTML', async () => { diff --git a/packages/astro/test/astro-scripts.test.js b/packages/astro/test/astro-scripts.test.js index ad60511ed4..28c33fc510 100644 --- a/packages/astro/test/astro-scripts.test.js +++ b/packages/astro/test/astro-scripts.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import path from 'path'; import { loadFixture } from './test-utils.js'; diff --git a/packages/astro/test/astro-slots.test.js b/packages/astro/test/astro-slots.test.js index d890f2f310..60d4e25603 100644 --- a/packages/astro/test/astro-slots.test.js +++ b/packages/astro/test/astro-slots.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; describe('Slots', () => { diff --git a/packages/astro/test/dev-routing.test.js b/packages/astro/test/dev-routing.test.js index 7ec6348c43..439ee6988f 100644 --- a/packages/astro/test/dev-routing.test.js +++ b/packages/astro/test/dev-routing.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; describe('Development Routing', () => { diff --git a/packages/astro/test/fetch.test.js b/packages/astro/test/fetch.test.js index c548aa3f1d..053c7683eb 100644 --- a/packages/astro/test/fetch.test.js +++ b/packages/astro/test/fetch.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; describe('Global Fetch', () => { diff --git a/packages/astro/test/lit-element.test.js b/packages/astro/test/lit-element.test.js index 6b8690fffc..34237ae337 100644 --- a/packages/astro/test/lit-element.test.js +++ b/packages/astro/test/lit-element.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; describe('LitElement test', function () { diff --git a/packages/astro/test/markdown.test.js b/packages/astro/test/markdown.test.js index b8263ce76d..d12fa25cd4 100644 --- a/packages/astro/test/markdown.test.js +++ b/packages/astro/test/markdown.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; describe('Markdown tests', () => { diff --git a/packages/astro/test/postcss.test.js b/packages/astro/test/postcss.test.js index 53c4f76658..1697116fd4 100644 --- a/packages/astro/test/postcss.test.js +++ b/packages/astro/test/postcss.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import eol from 'eol'; import { loadFixture } from './test-utils.js'; diff --git a/packages/astro/test/preact-component.test.js b/packages/astro/test/preact-component.test.js index 868f152704..c2814ebca8 100644 --- a/packages/astro/test/preact-component.test.js +++ b/packages/astro/test/preact-component.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; describe('Preact component', () => { diff --git a/packages/astro/test/remote-css.test.js b/packages/astro/test/remote-css.test.js index e7cb540901..4ca6eb4229 100644 --- a/packages/astro/test/remote-css.test.js +++ b/packages/astro/test/remote-css.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; describe('Remote CSS', () => { diff --git a/packages/astro/test/slots-preact.test.js b/packages/astro/test/slots-preact.test.js index 380979f047..c86a25fb7b 100644 --- a/packages/astro/test/slots-preact.test.js +++ b/packages/astro/test/slots-preact.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; describe('Slots: Preact', () => { diff --git a/packages/astro/test/slots-react.test.js b/packages/astro/test/slots-react.test.js index 3cca8ae059..da69531422 100644 --- a/packages/astro/test/slots-react.test.js +++ b/packages/astro/test/slots-react.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; describe('Slots: React', () => { diff --git a/packages/astro/test/slots-solid.test.js b/packages/astro/test/slots-solid.test.js index cf59ada41c..d7659f033f 100644 --- a/packages/astro/test/slots-solid.test.js +++ b/packages/astro/test/slots-solid.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; describe('Slots: Solid', () => { diff --git a/packages/astro/test/slots-svelte.test.js b/packages/astro/test/slots-svelte.test.js index 3c5b5d7faf..0bbbae25ad 100644 --- a/packages/astro/test/slots-svelte.test.js +++ b/packages/astro/test/slots-svelte.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; describe('Slots: Svelte', () => { diff --git a/packages/astro/test/slots-vue.test.js b/packages/astro/test/slots-vue.test.js index 9cd8ac6eb4..2b0dbc743e 100644 --- a/packages/astro/test/slots-vue.test.js +++ b/packages/astro/test/slots-vue.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; describe('Slots: Vue', () => { diff --git a/packages/astro/test/solid-component.test.js b/packages/astro/test/solid-component.test.js index f870468f23..0a05118eb0 100644 --- a/packages/astro/test/solid-component.test.js +++ b/packages/astro/test/solid-component.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { isWindows, loadFixture } from './test-utils.js'; describe('Solid component', () => { diff --git a/packages/astro/test/static-build-code-component.test.js b/packages/astro/test/static-build-code-component.test.js index f6a7d205df..9a26f06750 100644 --- a/packages/astro/test/static-build-code-component.test.js +++ b/packages/astro/test/static-build-code-component.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; describe('Code component inside static build', () => { diff --git a/packages/astro/test/static-build-frameworks.test.js b/packages/astro/test/static-build-frameworks.test.js index 8bb2e116ab..08dfdcf2f9 100644 --- a/packages/astro/test/static-build-frameworks.test.js +++ b/packages/astro/test/static-build-frameworks.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { loadFixture, isWindows } from './test-utils.js'; describe('Static build - frameworks', () => { diff --git a/packages/astro/test/static-build-page-url-format.test.js b/packages/astro/test/static-build-page-url-format.test.js index 941a7e571a..6d08e85e6a 100644 --- a/packages/astro/test/static-build-page-url-format.test.js +++ b/packages/astro/test/static-build-page-url-format.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; function addLeadingSlash(path) { diff --git a/packages/astro/test/svelte-component.test.js b/packages/astro/test/svelte-component.test.js index a68acd9243..da69171ee9 100644 --- a/packages/astro/test/svelte-component.test.js +++ b/packages/astro/test/svelte-component.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { isWindows, loadFixture } from './test-utils.js'; describe('Svelte component', () => { diff --git a/packages/astro/test/tailwindcss.test.js b/packages/astro/test/tailwindcss.test.js index bff025ffce..c8fad9f4ca 100644 --- a/packages/astro/test/tailwindcss.test.js +++ b/packages/astro/test/tailwindcss.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { loadFixture } from './test-utils.js'; let fixture; diff --git a/packages/astro/test/vue-component.test.js b/packages/astro/test/vue-component.test.js index d3870dc888..3c57c65447 100644 --- a/packages/astro/test/vue-component.test.js +++ b/packages/astro/test/vue-component.test.js @@ -1,5 +1,5 @@ import { expect } from 'chai'; -import cheerio from 'cheerio'; +import * as cheerio from 'cheerio'; import { isWindows, loadFixture } from './test-utils.js'; describe('Vue component', () => {