mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
ed2828861c
no ref These are flaky on CI this week and we're not currently making use of this demo.
10 lines
318 B
TypeScript
10 lines
318 B
TypeScript
import ListPage from '../../src/ListPage';
|
|
import {render, screen} from '@testing-library/react';
|
|
|
|
describe.skip('Demo', function () {
|
|
it('renders a component', async function () {
|
|
render(<ListPage />);
|
|
|
|
expect(screen.getAllByRole('heading')[0].textContent).toEqual('AdminX Demo App');
|
|
});
|
|
});
|