Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky committed Nov 1, 2024
1 parent 7673f83 commit 34049f7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/description.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ each(
{ input: arrayWithProps, reason: 'ignoredArrayProperty' },
{ input: () => {}, reason: 'ignoredFunction' },
{
// eslint-disable-next-line fp/no-mutating-methods
input: Object.defineProperty({}, 'prop', {
value: true,
enumerable: false,
Expand Down Expand Up @@ -85,6 +86,7 @@ test.serial('Returns error name and message', (t) => {
each(
[
{
// eslint-disable-next-line fp/no-mutating-methods
input: Object.defineProperty({}, 'prop', {
value: true,
enumerable: true,
Expand All @@ -94,6 +96,7 @@ each(
reason: 'descriptorNotWritable',
},
{
// eslint-disable-next-line fp/no-mutating-methods
input: Object.defineProperty({}, 'prop', {
value: true,
enumerable: true,
Expand Down

0 comments on commit 34049f7

Please sign in to comment.