Skip to content

Commit

Permalink
chore(deps-dev): bump the major-dev-dependencies group with 3 updates (
Browse files Browse the repository at this point in the history
…#251)

* chore(deps-dev): bump the major-dev-dependencies group with 3 updates

Bumps the major-dev-dependencies group with 3 updates: [@testing-library/jest-dom](https://github.com/testing-library/jest-dom), [stylelint-config-standard](https://github.com/stylelint/stylelint-config-standard) and [stylelint-config-standard-scss](https://github.com/stylelint-scss/stylelint-config-standard-scss).


Updates `@testing-library/jest-dom` from 5.16.5 to 6.1.4
- [Release notes](https://github.com/testing-library/jest-dom/releases)
- [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md)
- [Commits](testing-library/jest-dom@v5.16.5...v6.1.4)

Updates `stylelint-config-standard` from 33.0.0 to 34.0.0
- [Release notes](https://github.com/stylelint/stylelint-config-standard/releases)
- [Changelog](https://github.com/stylelint/stylelint-config-standard/blob/main/CHANGELOG.md)
- [Commits](stylelint/stylelint-config-standard@33.0.0...34.0.0)

Updates `stylelint-config-standard-scss` from 10.0.0 to 11.0.0
- [Release notes](https://github.com/stylelint-scss/stylelint-config-standard-scss/releases)
- [Changelog](https://github.com/stylelint-scss/stylelint-config-standard-scss/blob/main/CHANGELOG.md)
- [Commits](stylelint-scss/stylelint-config-standard-scss@v10.0.0...v11.0.0)

---
updated-dependencies:
- dependency-name: "@testing-library/jest-dom"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major-dev-dependencies
- dependency-name: stylelint-config-standard
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major-dev-dependencies
- dependency-name: stylelint-config-standard-scss
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major-dev-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>

* fix: import path for jest-dom helpers

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: dustin-jw <[email protected]>
  • Loading branch information
dependabot[bot] and dustin-jw authored Oct 16, 2023
1 parent 63efed7 commit 24e66bf
Show file tree
Hide file tree
Showing 4 changed files with 81 additions and 100 deletions.
2 changes: 1 addition & 1 deletion __tests__/404.test.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { render, screen, waitFor } from '@testing-library/react';
import '@testing-library/jest-dom/extend-expect';
import '@testing-library/jest-dom';
import { FilterProvider } from '../context/FilterContext';
import { ViewProvider } from '../context/ViewContext';
import PageNotFound from '../pages/404';
Expand Down
10 changes: 6 additions & 4 deletions __tests__/[id].test.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { render, screen, waitFor } from '@testing-library/react';
import '@testing-library/jest-dom/extend-expect';
import '@testing-library/jest-dom';
import { FilterProvider } from '../context/FilterContext';
import { ViewProvider } from '../context/ViewContext';
import apiService from '../services/apiService';
Expand Down Expand Up @@ -30,10 +30,12 @@ describe('DetailPage', () => {
<FilterProvider>
<DetailPage fetchedTeamMember={MOCK_TEAM_MEMBER} />
</FilterProvider>
</ViewProvider>,
</ViewProvider>
);

await waitFor(() => expect(screen.getByText('Aragorn Elessar II')).toBeInTheDocument());
await waitFor(() =>
expect(screen.getByText('Aragorn Elessar II')).toBeInTheDocument()
);
});
});

Expand Down Expand Up @@ -68,7 +70,7 @@ describe('getServerSideProps', () => {
cohortParticipant: 'fellowship',
},
},
}),
})
);
});
});
163 changes: 71 additions & 92 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"react-dom": "18.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"eslint": "8.51.0",
"eslint-config-airbnb": "^19.0.4",
Expand All @@ -30,7 +30,7 @@
"npm-run-all": "^4.1.5",
"sass": "^1.69.3",
"stylelint": "^15.10.3",
"stylelint-config-standard": "^33.0.0",
"stylelint-config-standard-scss": "^10.0.0"
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^11.0.0"
}
}

0 comments on commit 24e66bf

Please sign in to comment.