* feat: new proxy package * chore: update nx workspace * chore: remove unused codegen lib * chore: add swc-node as build dependencies * chore: remove unused demo-app-e2e app * chore: reorganize demo apps * feat: working cross-engine proxy * chore: update docs * fix: readme file export * chore: update nextjs lib * chore: keep nextjs code
11 lines
252 B
TypeScript
11 lines
252 B
TypeScript
import { render } from '@testing-library/react';
|
|
|
|
import Index from '../pages/index';
|
|
|
|
describe('Index', () => {
|
|
xit('should render successfully', () => {
|
|
const { baseElement } = render(<Index />);
|
|
expect(baseElement).toBeTruthy();
|
|
});
|
|
});
|