mirror of
https://github.com/inaturalist/iNaturalistReactNative.git
synced 2026-01-17 18:28:54 -05:00
17 lines
489 B
JavaScript
17 lines
489 B
JavaScript
import ProjectListItem from "components/ProjectList/ProjectListItem.tsx";
|
|
import React from "react";
|
|
|
|
const mockProject = {
|
|
id: 1,
|
|
title: "Project Title",
|
|
icon: "https://static.inaturalist.org/projects/1/iconic_taxa_photos/medium.jpg?1521796076",
|
|
project_type: "collection"
|
|
};
|
|
|
|
describe( "ProjectListItem", () => {
|
|
it( "should be accessible", () => {
|
|
const projectListItem = <ProjectListItem item={mockProject} />;
|
|
expect( projectListItem ).toBeAccessible();
|
|
} );
|
|
} );
|