-
Notifications
You must be signed in to change notification settings - Fork 539
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
705ce9a
commit a027a72
Showing
8 changed files
with
172 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`Joyride > SSR should render without errors 1`] = `"<div data-test-id="demo"><main><div class="hero"><div class="container"><div class="hero__content"><h1><span>Create walkthroughs and guided tours for your ReactJS apps.</span></h1><button data-test-id="start" type="button">Let's Go!</button></div></div></div><div class="demo__section projects"><div class="container"><h2><span>Projects</span></h2><div class="list"><div>Installation</div><div>Documentation</div><div>Support </div></div></div></div><div class="demo__section mission"><div class="container"><h2><span>Mission</span></h2><button data-test-id="mission-button" type="button">Click me</button></div></div><div class="demo__section about"><div class="container"><h2><span>About</span></h2></div></div></main><footer class="demo__footer"><div class="container"><button type="button">Joyride</button></div></footer></div>"`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,27 @@ | ||
/** | ||
* @jest-environment node | ||
*/ | ||
|
||
import React from 'react'; | ||
import { renderToStaticMarkup } from 'react-dom/server'; | ||
|
||
import Standard from '../__fixtures__/Standard'; | ||
import { fireEvent, render, screen } from '../__fixtures__/test-utils'; | ||
|
||
const mockCallback = jest.fn(); | ||
|
||
jest.mock('~/modules/dom', () => { | ||
const originalModule = jest.requireActual('~/modules/dom'); | ||
|
||
return { | ||
...originalModule, | ||
canUseDOM: jest.fn().mockImplementation(() => false), | ||
}; | ||
}); | ||
|
||
describe('Joyride > NO-DOM', () => { | ||
it('should render without errors', async () => { | ||
const view = renderToStaticMarkup(<Standard />); | ||
render(<Standard callback={mockCallback} />); | ||
|
||
it('should not render the step when starting the tour', async () => { | ||
fireEvent.click(screen.getByTestId('start')); | ||
|
||
expect(screen.queryById('react-joyride-step-0')).not.toBeInTheDocument(); | ||
|
||
expect(view).toMatchSnapshot(); | ||
expect(mockCallback).not.toHaveBeenCalled(); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/** | ||
* @jest-environment node | ||
*/ | ||
|
||
import React from 'react'; | ||
import { renderToStaticMarkup } from 'react-dom/server'; | ||
|
||
import Standard from '../__fixtures__/Standard'; | ||
|
||
describe('Joyride > SSR', () => { | ||
it('should render without errors', async () => { | ||
const view = renderToStaticMarkup(<Standard />); | ||
|
||
expect(view).toMatchSnapshot(); | ||
}); | ||
}); |
Oops, something went wrong.