-
Notifications
You must be signed in to change notification settings - Fork 325
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5050 from alphagov/jsdom-hint-template-tests
Update hint template tests to use jsdom
- Loading branch information
Showing
2 changed files
with
64 additions
and
68 deletions.
There are no files selected for viewing
64 changes: 64 additions & 0 deletions
64
packages/govuk-frontend/src/govuk/components/hint/template.jsdom.test.js
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,64 @@ | ||
const { getExamples, render } = require('@govuk-frontend/lib/components') | ||
|
||
describe('Hint', () => { | ||
let examples | ||
|
||
beforeAll(async () => { | ||
examples = await getExamples('hint') | ||
}) | ||
|
||
it('contains the hint text', () => { | ||
document.body.innerHTML = render('hint', examples.default) | ||
|
||
const $component = document.querySelector('.govuk-hint') | ||
expect($component).toHaveTextContent( | ||
"It's on your National Insurance card, benefit letter, payslip or P60. For example, 'QQ 12 34 56 C'." | ||
) | ||
}) | ||
|
||
it('includes additional classes from the `classes` option', () => { | ||
document.body.innerHTML = render('hint', examples.classes) | ||
|
||
const $component = document.querySelector('.govuk-hint') | ||
expect($component).toHaveClass('app-hint--custom-modifier') | ||
}) | ||
|
||
it('does not include an `id` attribute if the `id` option is not set', () => { | ||
document.body.innerHTML = render('hint', examples.default) | ||
|
||
const $component = document.querySelector('.govuk-hint') | ||
expect($component).not.toHaveAttribute('id') | ||
}) | ||
|
||
it('sets the `id` attribute based on the `id` option', () => { | ||
document.body.innerHTML = render('hint', examples.id) | ||
|
||
const $component = document.querySelector('.govuk-hint') | ||
expect($component).toHaveAttribute('id', 'my-hint') | ||
}) | ||
|
||
it('escapes HTML when using the `text` option', () => { | ||
document.body.innerHTML = render('hint', examples['html as text']) | ||
|
||
const $component = document.querySelector('.govuk-hint') | ||
expect($component).toHaveTextContent( | ||
'Unexpected <strong>bold text</strong> in body' | ||
) | ||
}) | ||
|
||
it('does not escape HTML when using the `html` option', () => { | ||
document.body.innerHTML = render('hint', examples['with html']) | ||
|
||
const $component = document.querySelector('.govuk-hint') | ||
expect($component).toContainHTML( | ||
'It\'s on your National Insurance card, benefit letter, payslip or <a class="govuk-link" href="#">P60</a>.\n For example, \'QQ 12 34 56 C\'.' | ||
) | ||
}) | ||
|
||
it('sets any additional attributes based on the `attributes` option', () => { | ||
document.body.innerHTML = render('hint', examples.attributes) | ||
|
||
const $component = document.querySelector('.govuk-hint') | ||
expect($component).toHaveAttribute('data-attribute', 'my data value') | ||
}) | ||
}) |
68 changes: 0 additions & 68 deletions
68
packages/govuk-frontend/src/govuk/components/hint/template.test.js
This file was deleted.
Oops, something went wrong.