mirror of
https://github.com/inaturalist/iNaturalistReactNative.git
synced 2026-01-21 04:09:23 -05:00
* Update package.json * Update package.json * Updates for native files with upgrade-helpers * Update .flowconfig * Update package-lock.json * Update Podfile.lock * Add react-dom types * Update package-lock.json * Wrong install * Use types-react-codemod * Update TaxonSearch.tsx * Remove react-native-accessibility-engine dependency This is currently not maintained and not compatible with RN 0.78 * Comment out accessibility tests * Disable broken snapshot test * Move broken test * Move broken test * Move broken test * Remove duplicate file * Move broken tests * Move broken tests * Move broken tests * Move broken tests * Move broken tests * Move broken test * Remove duplicate file * Move broken tests
37 lines
931 B
JavaScript
37 lines
931 B
JavaScript
import { render, screen } from "@testing-library/react-native";
|
|
import { CommentsCount } from "components/SharedComponents";
|
|
import React from "react";
|
|
|
|
const count = 1;
|
|
|
|
describe( "CommentsCount", () => {
|
|
it( "renders default reliably", () => {
|
|
// Snapshot test
|
|
render( <CommentsCount count={count} /> );
|
|
|
|
expect( screen ).toMatchSnapshot();
|
|
} );
|
|
|
|
it( "renders white reliably", () => {
|
|
// Snapshot test
|
|
render( <CommentsCount count={count} white /> );
|
|
|
|
expect( screen ).toMatchSnapshot();
|
|
} );
|
|
|
|
it( "renders filled reliably", () => {
|
|
// Snapshot test
|
|
render( <CommentsCount count={count} filled /> );
|
|
|
|
expect( screen ).toMatchSnapshot();
|
|
} );
|
|
|
|
// a11y test
|
|
it( "should not have accessibility errors", () => {
|
|
// const activityCount = <CommentsCount count={count} />;
|
|
|
|
// Disabled during the update to RN 0.78
|
|
// expect( activityCount ).toBeAccessible();
|
|
} );
|
|
} );
|