-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
[BUGFIX beta] Remove FastBoot monkeypatch #12677
Conversation
// enabled, we check to see if those flags are on before registering | ||
// the tests. Once all feature flags are on by default we can remove | ||
// this conditional. | ||
if (appModule.canRunTests) { |
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.
Do we need to keep this around in case it gets backed out?
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 guess so. I'm not sure of the actual process of when things get removed. /cc @rwjblue
ProTip™: use https://github.com/emberjs/ember.js/pull/12677/files?w=1 for a better diff 👀 |
75f07b3
to
26d56f2
Compare
Looks like this is failing on IE. I don't have a VM on my laptop at the moment, though I'm trying to download one on slow Wi-Fi. If anyone with IE handy could run the tests and report the error, I would appreciate it. |
Just a sauce issue, thanks @rwjblue for the re-run. |
The DOM helper used to require a specially patched version of `protocolForURL` and `setMorphHTML` to work in Node. This commit: 1) Adds a test to verify attributes are correctly sanitized in Node 2) Removes the monkeypatches
26d56f2
to
a914541
Compare
Added |
Thank you @tomdale |
[BUGFIX beta] Remove FastBoot monkeypatch
The DOM helper used to require a patched
protocolForURL
to work in Node. This PR:visit()
in NodeNote that this PR relies on tildeio/htmlbars#437, which will need to be merged and bumped before this PR's tests will pass.
/cc @chancancode