-
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.
- avoids duplication, already had email stripping code - also now includes dates and postcodes
- Loading branch information
1 parent
4226055
commit 92d990d
Showing
2 changed files
with
10 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -190,9 +190,12 @@ describe('GOVUK.GoogleAnalyticsUniversalTracker', function () { | |
}) | ||
|
||
describe('when tracking all events', function () { | ||
window.history.replaceState(null, null, '[email protected]') | ||
it('removes any email address from the location', function () { | ||
window.history.replaceState(null, null, '[email protected]&postcode=sw11wa&date=2019-01-01') | ||
|
||
it('removes any pii from the location', function () { | ||
expect(window.ga.calls.mostRecent().args[2]).toContain('address=[email]') | ||
expect(window.ga.calls.mostRecent().args[2]).toContain('postcode=[postcode]') | ||
expect(window.ga.calls.mostRecent().args[2]).toContain('date=[date]') | ||
}) | ||
}) | ||
|
||
|