* feat(client): add function alias support * feat(client): auto config from env vars * fix(client): username in aliased url * feat: nextjs proxy handler * fix: update client tests * feat(client): built-in queue support * feat: client + nextjs e2e demo * chore: update browserslist * chore: update version info * chore: update readme badges * fix: ignore lint error on require
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();
|
|
});
|
|
});
|