* feat: add nextjs app router support * chore: rename nextjs page router demo * feat: support nextjs app router with example * chore(proxy): bump to 0.4.0 * chore: update package-lock.json * chore: remove formidable * chore: update package-lock.json * fix: page export * fix: type issues * fix: remove comment * fix: eslint any warning * chore: client version bump 0.4.2
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();
|
|
});
|
|
});
|