diff --git a/apps/web/specs/index.spec.tsx b/apps/web/specs/index.spec.tsx index 901a6a0..715b529 100644 --- a/apps/web/specs/index.spec.tsx +++ b/apps/web/specs/index.spec.tsx @@ -1,3 +1,5 @@ -xdescribe('Page', () => { - it('should render successfully', () => {}); +describe('Page', () => { + it('should render successfully', () => { + expect(true).toBeTruthy(); + }); });