-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
We need to have a reproducible way of handling React elements through out the system. This is required to handle things like GOV.UK Frontend, Page Titles, global CSRF tokens and similar shared elements. We're also Reactifying the first piece of the system. We have to sadly override some of the JSX interfaces globally, due to some HTML backwards supportability. [See here][1] [1]: alphagov/govuk-frontend#1688
- Loading branch information
Showing
12 changed files
with
1,233 additions
and
17 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
const { configure } = require('enzyme'); | ||
const Adapter = require('enzyme-adapter-react-16'); | ||
|
||
configure({ adapter: new Adapter() }); |
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
Oops, something went wrong.