mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-06 11:23:48 -05:00
Includes: - tests for the analytics interface ported from GOVUK Frontend Toolkit - tests for the cookie banner that appears on all pages except the cookies page - tests for the cookies page JS - tests for the hasConsentFor function - adding a deleteCookie helper to remove cookies during tests - polyfill for insertAdjacentText The last one is because JSDOM doesn't support insertAdjacentText but our target browsers do. This polyfill also includes one for insertAdjacentHTML.
10 lines
211 B
JavaScript
10 lines
211 B
JavaScript
// Polyfill holes in JSDOM
|
|
require('./polyfills.js');
|
|
|
|
// set up jQuery
|
|
window.jQuery = require('jquery');
|
|
$ = window.jQuery;
|
|
|
|
// load module code
|
|
require('govuk_frontend_toolkit/javascripts/govuk/modules.js');
|