-
Notifications
You must be signed in to change notification settings - Fork 40
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
failing test for #207 #208
Conversation
tests/parse-result-test.js
Outdated
@@ -1211,7 +1221,7 @@ QUnit.module('ember-template-recast', function() { | |||
|
|||
QUnit.test('mutations retain custom whitespace formatting', function(assert) { | |||
let template = stripIndent` | |||
<Foo |
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.
Please revert this change, this whitespace is intentional
@@ -22,6 +22,16 @@ QUnit.module('ember-template-recast', function() { | |||
assert.equal(print(ast), `<img src="{{this.something}}">`); | |||
}); | |||
|
|||
QUnit.test('test descriptions with carets pass', function(assert) { | |||
let template = `it('<' function() { |
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 don't really understand what this is testing. This project does not support parsing javascript files...
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.
@rwjblue I created a test here as it was the simplest way to demonstrate the error I saw while running the angle brackets codemod on integration tests in my app. It looks like someone has posted an issue too: ember-codemods/ember-angle-brackets-codemod#240
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.
#207 has my initial breakdown if that helps
No description provided.