ModusCreateOrg/budgeting

View on GitHub
app/components/BudgetGridRow/__tests__/__snapshots__/index-test.js.snap

Summary

Maintainability
Test Coverage
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`renders correctly 1`] = `
<tr
  onClick={[Function]}
>
  <td>
    <div
      className="cellLabel"
    >
      Category
    </div>
    <div
      className="cellContent"
    >
      Groceries
    </div>
  </td>
  <td>
    <div
      className="cellLabel"
    >
      Description
    </div>
    <div
      className="cellContent"
    >
      Trader Joe's food
    </div>
  </td>
  <td
    className="neg"
  >
    <div
      className="cellLabel"
    >
      Amount
    </div>
    <div
      className="cellContent"
    >
      -$423.34
    </div>
  </td>
</tr>
`;