Skip to content

Commit

Permalink
Test breaking stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
nmanu1 committed Apr 12, 2024
1 parent 06e8cbb commit 1dc0939
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down
1 change: 1 addition & 0 deletions src/components/AlternativeVerticals.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import React from 'react';

/**
* The CSS class interface used for {@link AlternativeVerticals}.
* TEST
*
* @public
*/
Expand Down
2 changes: 1 addition & 1 deletion tests/components/AlternativeVerticals.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ describe('AlternativeVerticals', () => {

it('displays vertical suggestions corresponding to what is specified in verticalConfigMap', () => {
render(<AlternativeVerticals {...alternativeVerticalsProps}/>);
expect(screen.getByText('FAQs - 1 result')).toBeDefined();
expect(screen.getByText('FAQs - 1 result')).not.toBeDefined();
expect(screen.getByText('Events - 2 results')).toBeDefined();
});

Expand Down

0 comments on commit 1dc0939

Please sign in to comment.