Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
thetutlage committed Mar 29, 2024
1 parent 943c0c1 commit bceba2f
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 25 deletions.
42 changes: 21 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,37 +37,37 @@
"sync-labels": "github-label-sync --labels .github/labels.json japa/runner"
},
"devDependencies": {
"@adonisjs/eslint-config": "^1.2.0",
"@adonisjs/prettier-config": "^1.2.0",
"@adonisjs/tsconfig": "^1.2.0",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@swc/core": "^1.3.100",
"@types/chai": "^4.3.11",
"@adonisjs/eslint-config": "^1.3.0",
"@adonisjs/prettier-config": "^1.3.0",
"@adonisjs/tsconfig": "^1.3.0",
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@swc/core": "^1.4.11",
"@types/chai": "^4.3.14",
"@types/chai-subset": "^1.3.5",
"@types/find-cache-dir": "^5.0.0",
"@types/ms": "^0.7.34",
"@types/node": "^20.10.4",
"c8": "^8.0.1",
"chai": "^4.3.10",
"@types/node": "^20.11.30",
"c8": "^9.1.0",
"chai": "^5.1.0",
"chai-subset": "^1.6.0",
"cross-env": "^7.0.3",
"del-cli": "^5.1.0",
"eslint": "^8.56.0",
"eslint": "^8.57.0",
"github-label-sync": "^2.3.1",
"glob": "^10.3.10",
"husky": "^8.0.3",
"np": "^9.2.0",
"prettier": "^3.1.1",
"glob": "^10.3.12",
"husky": "^9.0.11",
"np": "^10.0.2",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
"tsup": "^8.0.2",
"typescript": "^5.4.3"
},
"dependencies": {
"@japa/core": "^9.0.0",
"@japa/errors-printer": "^3.0.2",
"@poppinss/colors": "^4.1.2",
"@poppinss/hooks": "^7.2.2",
"@japa/core": "^9.0.1",
"@japa/errors-printer": "^3.0.3",
"@poppinss/colors": "^4.1.3",
"@poppinss/hooks": "^7.2.3",
"fast-glob": "^3.3.2",
"find-cache-dir": "^5.0.0",
"getopts": "^2.3.0",
Expand Down
4 changes: 2 additions & 2 deletions tests/base_reporter.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@

import { test } from 'node:test'
import chaiSubset from 'chai-subset'
import { assert, default as chai } from 'chai'
import { assert, use } from 'chai'

chai.use(chaiSubset)
use(chaiSubset)

import { wrapAssertions } from '../tests_helpers/main.js'
import {
Expand Down
4 changes: 2 additions & 2 deletions tests/config_manager.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@
import { test } from 'node:test'
import chaiSubset from 'chai-subset'
import { Refiner } from '@japa/core'
import { assert, default as chai } from 'chai'
import { assert, use } from 'chai'

import { CliParser } from '../src/cli_parser.js'
import type { CLIArgs, Config } from '../src/types.js'
import { wrapAssertions } from '../tests_helpers/main.js'
import { ndjson, spec, dot } from '../src/reporters/main.js'
import { ConfigManager, NOOP } from '../src/config_manager.js'

chai.use(chaiSubset)
use(chaiSubset)

const USER_DEFINED_CONFIG_DATASET: [Config, Config][] = [
[
Expand Down

0 comments on commit bceba2f

Please sign in to comment.