We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78ce685 commit 1b00256Copy full SHA for 1b00256
src/views/Cfp/CfpSection.test.tsx
@@ -13,15 +13,13 @@ describe("CfpSection", () => {
13
);
14
});
15
16
- // Reason: CFP not ready yet
17
- it.skip("renders TitleSection with correct props", () => {
+ it("renders TitleSection with correct props", () => {
18
render(<CfpSection />);
19
expect(screen.getByText(/CFP Committee/)).toBeInTheDocument();
20
expect(screen.getByText(/We're excited to announce/)).toBeInTheDocument();
21
22
23
24
- it.skip("renders a CfpTrackComponent for each track in data", () => {
+ it("renders a CfpTrackComponent for each track in data", () => {
25
26
data.forEach((track) => {
27
expect(screen.getByText(track.name)).toBeInTheDocument();
0 commit comments