Skip to content

Commit

Permalink
Bump expect from 27.5.1 to 28.1.0 (#179)
Browse files Browse the repository at this point in the history
* Bump expect from 27.5.1 to 28.1.0

Bumps [expect](https://github.com/facebook/jest/tree/HEAD/packages/expect) from 27.5.1 to 28.1.0.
- [Release notes](https://github.com/facebook/jest/releases)
- [Changelog](https://github.com/facebook/jest/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/jest/commits/v28.1.0/packages/expect)

---
updated-dependencies:
- dependency-name: expect
  dependency-type: direct:development
  update-type: version-update:semver-major
...

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

* update expect

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: u9g <[email protected]>
  • Loading branch information
dependabot[bot] and u9g authored May 13, 2022
1 parent ace134e commit 0f4ec64
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"homepage": "https://github.com/PrismarineJS/prismarine-chunk",
"devDependencies": {
"@types/node": "^17.0.0",
"expect": "^27.3.1",
"expect": "^28.1.0",
"mocha": "^10.0.0",
"prismarine-chunk": "file:.",
"standard": "^17.0.0-2",
Expand Down
2 changes: 1 addition & 1 deletion test/ChunkColumn.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const versions = ['bedrock_1.16.220', 'bedrock_1.17.40', 'bedrock_1.18.0', '1.8'
const constants = require('../src/pc/common/constants')
const { Vec3 } = require('vec3')
const assert = require('assert')
const expect = require('expect')
const expect = require('expect').default

for (const version of versions) {
const registry = require('prismarine-registry')(version)
Expand Down
2 changes: 1 addition & 1 deletion test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const chunkLoader = require('../index')
const SingleValueContainer = require('../src/pc/common/PaletteContainer').SingleValueContainer
const constants = require('../src/pc/common/constants')
const { performance } = require('perf_hooks')
const expect = require('expect')
const expect = require('expect').default

const versions = ['bedrock_0.14', 'bedrock_1.0', '1.8', '1.9', '1.10', '1.11', '1.12', '1.13.2', '1.14.4', '1.15.2', '1.16.1', '1.17', '1.18']
const cycleTests = ['1.8', '1.9', '1.10', '1.11', '1.12', '1.13.2', '1.14.4', '1.15.2', '1.16.1', '1.17', '1.18']
Expand Down

0 comments on commit 0f4ec64

Please sign in to comment.