Skip to content

Commit

Permalink
Fix broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
remcohaszing committed Apr 15, 2023
1 parent bda836a commit 4947e3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/errors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ const plugin: PluginCreator<{ a: number }> = opts => {
postcssPlugin: 'remover',
// THROWS Property 'Decl' does not exist on type 'Helpers'.
Comment(decl, { Decl }) {
// THROWS Property 'prop' does not exist on type 'Comment'
// THROWS Property 'prop' does not exist on type 'Comment_'
console.log(decl.prop)
// THROWS Property 'removeChild' does not exist on type 'Comment'
// THROWS Property 'removeChild' does not exist on type 'Comment_'
decl.removeChild(1)
}
}
Expand Down

0 comments on commit 4947e3b

Please sign in to comment.