All files / components/TabComponent DownloadsTabComponent.jsx

100% Statements 3/3
100% Branches 0/0
100% Functions 2/2
100% Lines 3/3

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19      31x 1x     31x                      
import { Button } from "react-bootstrap";
 
export default function DownloadsTabComponent({ courseId, testIdPrefix }) {
  const downloadStudentCsv = () => {
    window.open(`/api/csv/rosterstudents?courseId=${courseId}`, "_blank");
  };
 
  return (
    <div data-testid={`${testIdPrefix}-DownloadsTabComponent`}>
      <Button
        onClick={downloadStudentCsv}
        data-testid={`${testIdPrefix}-download-student-csv-button`}
      >
        Download Student CSV
      </Button>
    </div>
  );
}