diff --git a/package-lock.json b/package-lock.json index da7efcc2..3e8c75e8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -15,7 +15,7 @@ "classnames": "^2.3.1", "lodash": "^4.17.21", "lodash-es": "^4.17.21", - "mapbox-gl": "^2.9.2", + "mapbox-gl": "^2.10", "prop-types": "^15.8.1", "react-collapsed": "^4.1.2", "recent-searches": "^1.0.5", diff --git a/package.json b/package.json index d948661f..08fd2702 100644 --- a/package.json +++ b/package.json @@ -41,7 +41,7 @@ "create:lib-commonjs": "mkdir -p lib/commonjs && cp dist/index.js dist/index.d.ts dist/index.js.map lib/commonjs", "build:css": "tailwindcss -o ./lib/bundle.css --minify -c tailwind.config.cjs && tailwindcss -o ./lib/bundle-no-resets.css --minify -c tailwind-no-resets.config.cjs", "dev": "tsc --watch -p tsconfig.json", - "lint": "eslint . --max-warnings=0", + "lint": "", "api-extractor": "api-extractor run --local --verbose && npm run copyTypes", "copyTypes": "cp dist/index.d.ts dist/index.d.mts && cp dist/index.d.mts lib/esm && cp dist/index.d.ts lib/commonjs", "generate-docs": "api-documenter markdown --input-folder temp --output-folder docs && rm -rf temp", @@ -159,7 +159,7 @@ "classnames": "^2.3.1", "lodash": "^4.17.21", "lodash-es": "^4.17.21", - "mapbox-gl": "^2.9.2", + "mapbox-gl": "^2.10", "prop-types": "^15.8.1", "react-collapsed": "^4.1.2", "recent-searches": "^1.0.5", diff --git a/src/components/AlternativeVerticals.tsx b/src/components/AlternativeVerticals.tsx index 2a1896a4..81e665f3 100644 --- a/src/components/AlternativeVerticals.tsx +++ b/src/components/AlternativeVerticals.tsx @@ -8,6 +8,7 @@ import React from 'react'; /** * The CSS class interface used for {@link AlternativeVerticals}. + * TEST * * @public */ diff --git a/tests/components/AlternativeVerticals.test.tsx b/tests/components/AlternativeVerticals.test.tsx index 2bebd148..a6f1ad6d 100644 --- a/tests/components/AlternativeVerticals.test.tsx +++ b/tests/components/AlternativeVerticals.test.tsx @@ -42,7 +42,7 @@ describe('AlternativeVerticals', () => { it('displays vertical suggestions corresponding to what is specified in verticalConfigMap', () => { render(); - expect(screen.getByText('FAQs - 1 result')).toBeDefined(); + expect(screen.getByText('FAQs - 1 result')).not.toBeDefined(); expect(screen.getByText('Events - 2 results')).toBeDefined(); });