Skip to content

Commit ac4abbe

Browse files
committed
break: switch default value of isolated from true to false
1 parent 5a1be95 commit ac4abbe

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

bin/cli.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,7 @@ if (isolatedInConfig === undefined) {
8787
)
8888
);
8989
}
90-
// TODO: switch to false default in 2.x
91-
const isolated = isolatedInConfig ?? true;
90+
const isolated = isolatedInConfig ?? false;
9291

9392
/**
9493
* @type {import("../dist/interface.d.ts").TestOption}

docs/release-note.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Release Note
22

3+
## 2.0.0
4+
5+
🔄 Break Changes
6+
7+
- Changed the default value of `isolated` from `true` to `false`.
8+
9+
## 1.4.1
10+
11+
🚀 Highlight Features
12+
13+
- Supported windows officially.
14+
315
## 1.4.0
416

517
🚀 Highlight Features

0 commit comments

Comments
 (0)