Files
Ryan Stelly b78be9243d lint rule & autofix for "trailing comma" (#3299)
* (lint) MOB-1063 enforce trailing commas

* autofix trailing commas

* manually fix newly introduced maxlen violations

* add trailing comma convention to i18n build
2025-12-22 20:17:13 -06:00

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();
} );
} );