-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fides GTM & Event Origination. #5821
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
1 Skipped Deployment
|
6441f54
to
773973a
Compare
// @ts-ignore | ||
modelType: item.bestTranslation |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I know this isn't your doing, but it would be nice to make this a bit safer while we're here
// @ts-ignore | |
modelType: item.bestTranslation | |
modelType: (item as PrivacyNoticeWithBestTranslation).bestTranslation |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't that a 6 of one, half a dozen of another sort of change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sort of. If there were other TS issues besides this one, they would not get seen. This is easier for future devs, basically. ts-ignore should be avoided at all costs.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
An example of where this could be problematic is if bestTranslation
were also removed from PrivacyNoticeWithBestTranslation
and that wouldn't get picked up here because of the //@ts-ignore
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah ok.
Co-authored-by: Jason Gill <jason.gill@ethyca.com>
Co-authored-by: Jason Gill <jason.gill@ethyca.com>
OK @gilluminate I pushed some updates to the Cypress tests to update those to include the new GTM events and do some (light) cleanup. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Overall, this is looking great. Thanks gang
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great detail added in the tests @NevilleS!
@@ -2122,7 +2122,19 @@ describe("Consent overlay", () => { | |||
|
|||
// Toggle the notice, but don't save yet | |||
cy.getByTestId("toggle-Advertising").click(); | |||
cy.get("@FidesUIChanged").should("have.been.calledOnce"); | |||
cy.get("@FidesUIChanged").its("callCount").should("equal", 1); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@NevilleS Just curious what the difference is here? Just for consistency?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, that's all
Co-authored-by: Neville Samuell <neville@ethyca.com> Co-authored-by: Jason Gill <jason.gill@ethyca.com>
fides
|
Project |
fides
|
Branch Review |
main
|
Run status |
|
Run duration | 00m 46s |
Commit |
|
Committer | Tom Van Dort |
View all properties for this run ↗︎ |
Test results | |
---|---|
|
0
|
|
0
|
|
0
|
|
0
|
|
5
|
View all changes introduced in this branch ↗︎ |
Closes []
Description Of Changes
Write some things here about the changes and any potential caveats
Code Changes
Steps to Confirm
Pre-Merge Checklist
CHANGELOG.md
updatedmain
downgrade()
migration is correct and works