Skip to content
This repository has been archived by the owner on Aug 31, 2023. It is now read-only.

Commit

Permalink
chore: test
Browse files Browse the repository at this point in the history
  • Loading branch information
ematipico committed Nov 21, 2022
1 parent 9e9a7ce commit efbf112
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion crates/rome_js_analyze/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,6 @@ fn apply_suppression_comment(payload: SuppressionCommentEmitterPayload<JsLanguag
}
};
if let Some(current_token) = current_token {
dbg!(current_token.parent());
if let Some(element) = current_token.ancestors().find_map(JsxAnyChild::cast) {
let jsx_comment = jsx_expression_child(
token(T!['{']).with_trailing_trivia([(
Expand Down
4 changes: 2 additions & 2 deletions crates/rome_lsp/tests/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -699,11 +699,11 @@ async fn pull_quick_fixes() -> Result<()> {
range: lsp::Range {
start: lsp::Position {
line: 0,
character: 2,
character: 3,
},
end: lsp::Position {
line: 0,
character: 2,
character: 3,
},
},
new_text: String::from("\n// rome-ignore lint/correctness/noCompareNegZero \n"),
Expand Down

0 comments on commit efbf112

Please sign in to comment.