Skip to content

Commit 1b00256

Browse files
committed
test: remove skip from CFP tests
1 parent 78ce685 commit 1b00256

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/views/Cfp/CfpSection.test.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,13 @@ describe("CfpSection", () => {
1313
);
1414
});
1515

16-
// Reason: CFP not ready yet
17-
it.skip("renders TitleSection with correct props", () => {
16+
it("renders TitleSection with correct props", () => {
1817
render(<CfpSection />);
1918
expect(screen.getByText(/CFP Committee/)).toBeInTheDocument();
2019
expect(screen.getByText(/We're excited to announce/)).toBeInTheDocument();
2120
});
2221

23-
// Reason: CFP not ready yet
24-
it.skip("renders a CfpTrackComponent for each track in data", () => {
22+
it("renders a CfpTrackComponent for each track in data", () => {
2523
render(<CfpSection />);
2624
data.forEach((track) => {
2725
expect(screen.getByText(track.name)).toBeInTheDocument();

0 commit comments

Comments
 (0)