Update highlight test for JSDoc grammar changes

This commit is contained in:
Max Brunsfeld 2020-01-27 13:08:30 -08:00
parent 3f109a3cb5
commit d06407aca2

View file

@ -369,7 +369,7 @@ fn test_highlighting_javascript_with_jsdoc() {
("a", vec!["variable"]),
(" ", vec![]),
("/* ", vec!["comment"]),
("@see", vec!["comment", "tag"]),
("@see", vec!["comment", "keyword"]),
(" a */", vec!["comment"]),
(" ", vec![]),
("b", vec!["variable"]),
@ -381,7 +381,7 @@ fn test_highlighting_javascript_with_jsdoc() {
(";", vec!["punctuation.delimiter"]),
(" ", vec![]),
("/* ", vec!["comment"]),
("@see", vec!["comment", "tag"]),
("@see", vec!["comment", "keyword"]),
(" b */", vec!["comment"])
]],
);