Skip to content

Commit f02e095

Browse files
committed
Finally actually release 5.0.0
1 parent 28dc879 commit f02e095

5 files changed

Lines changed: 389 additions & 419 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ All notable changes to this project will be documented in this file.
44
The format is (loosely) based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [5.0.0](https://github.com/doesdev/mvt/compare/4.2.1...5.0.0)
8-
#### 2022-03-03
7+
## [5.0.0](https://github.com/doesdev/mvt/compare/5.0.0-beta.1...5.0.0)
8+
#### 2025-10-31
99

1010
### BREAKING
1111
- ES Module format supported, CommonJS no longer supported

index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1+
process.env.NODE_ENV = process.env.NODE_ENV || 'test'
2+
13
import { test } from './lib/tests.js'
24
import { _setup } from './lib/state.js'
3-
process.env.NODE_ENV = process.env.NODE_ENV || 'test'
45

56
test.before(_setup)
67

lib/tests.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ import { reporter, summary } from './reporters.js'
66
import { color, parseMs, char } from './utility.js'
77

88
export const test = async (msg, fn) => {
9+
process.env.NODE_ENV = process.env.NODE_ENV || 'test'
10+
911
if (msg && fn) state.queue.push({ msg, fn, fileName: state.fileName })
1012

1113
const { runner } = getRunner(test)

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mvt",
3-
"version": "5.0.0-beta.1",
3+
"version": "5.0.0",
44
"description": "Minimum Viable Testing framework",
55
"type": "module",
66
"engines": {
@@ -37,7 +37,7 @@
3737
},
3838
"homepage": "https://github.com/doesdev/mvt#readme",
3939
"devDependencies": {
40-
"ava": "^6.1.3"
40+
"ava": "^6.4.1"
4141
},
4242
"packageManager": "yarn@4.4.0"
4343
}

0 commit comments

Comments
 (0)