• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

atlp-rwanda / vikings-ec-fe / 3983fac4-cae3-40e9-890a-8ffb94fdd8af

pending completion
3983fac4-cae3-40e9-890a-8ffb94fdd8af

Pull #41

circleci

Txny
fix: sales, orders and payments
Pull Request #41: Fix sales, orders and payments

385 of 700 branches covered (55.0%)

Branch coverage included in aggregate %.

24 of 24 new or added lines in 8 files covered. (100.0%)

1534 of 2015 relevant lines covered (76.13%)

23.13 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

50.0
/src/components/Order.js
1
import React from 'react';
2

3
const Order = ({ ...props }) => (
59✔
4
  <div className="flex flex-col gap-3">
×
5
    <div className="flex gap-2">
6
      <div className="w-36">
7
        <img
8
          role="presentation"
9
          className="rounded-lg w-full"
10
          src={props.image}
11
          alt="placeholder"
12
        />
13
      </div>
14
      <div className="text-[#262727] text-[16px]">
15
        <p className="font-semibold">Name:</p>
16
        <p>{props.productName}</p>
17
        <p className="font-semibold">Price:</p>
18
        <p>
19
          {props.price}
20
          RWF
21
        </p>
22
        <p>
23
          <span className="font-semibold">QTY:</span>
24
          {' '}
25
          {props.quantity}
26
        </p>
27
      </div>
28
    </div>
29
  </div>
30
);
31
export default Order;
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc