mirror of
https://github.com/inaturalist/iNaturalistReactNative.git
synced 2026-01-21 12:18:56 -05:00
* (lint) MOB-1063 enforce trailing commas * autofix trailing commas * manually fix newly introduced maxlen violations * add trailing comma convention to i18n build
19 lines
578 B
JavaScript
19 lines
578 B
JavaScript
import ProjectListItem from "components/ProjectList/ProjectListItem";
|
|
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} />;
|
|
// Disabled during the update to RN 0.78
|
|
expect( projectListItem ).toBeTruthy();
|
|
// expect( projectListItem ).toBeAccessible();
|
|
} );
|
|
} );
|