We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
equal(expand('div[(hello)]'), '<div (hello)=""></div>');
1) Expand Abbreviation npm ERR! Markup npm ERR! attributes: npm ERR! npm ERR! AssertionError [ERR_ASSERTION]: Expected values to be strictly equal: npm ERR! + actual - expected npm ERR! npm ERR! + '<div (hello}=""></div>' npm ERR! - '<div (hello)=""></div>' npm ERR! ^ npm ERR! + expected - actual npm ERR! npm ERR! -<div (hello}=""></div> npm ERR! +<div (hello)=""></div> npm ERR!
Tests pass and the (hello) part stays the same in the expanded abbreviation.
(hello)
The closing parenthesis ) becomes a closing brace }. Trying to expand div[(hello\)] results in the same issue.
)
}
div[(hello\)]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Test case
Output
Expected behaviour
Tests pass and the
(hello)
part stays the same in the expanded abbreviation.Actual behaviour
The closing parenthesis
)
becomes a closing brace}
. Trying to expanddiv[(hello\)]
results in the same issue.The text was updated successfully, but these errors were encountered: