Skip to content

Commit 956a156

Browse files
committed
test: unignore GNU/Linux
Signed-off-by: Jérôme Benoit <[email protected]>
1 parent cc299fb commit 956a156

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

examples/bun/typescript/bun.lockb

-745 Bytes
Binary file not shown.

examples/bun/typescript/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
"start": "bun pool.ts"
77
},
88
"dependencies": {
9-
"@poolifier/poolifier-web-worker": "npm:@jsr/poolifier__poolifier-web-worker@^0.4.31"
9+
"@poolifier/poolifier-web-worker": "npm:@jsr/poolifier__poolifier-web-worker@^0.5.0"
1010
},
1111
"devDependencies": {
12-
"@types/bun": "^1.1.16"
12+
"@types/bun": "^1.2.17"
1313
},
1414
"peerDependencies": {
1515
"typescript": "^5.4.3"

tests/pools/selection-strategies/selection-strategies.test.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1634,7 +1634,7 @@ describe('Selection strategies test suite', () => {
16341634

16351635
it({
16361636
name: 'Verify WEIGHTED_ROUND_ROBIN strategy can be run in a dynamic pool',
1637-
ignore: Deno.build.os === 'linux',
1637+
// ignore: Deno.build.os === 'linux',
16381638
fn: async () => {
16391639
const pool = new DynamicThreadPool(
16401640
min,
@@ -1723,7 +1723,7 @@ describe('Selection strategies test suite', () => {
17231723
it({
17241724
name:
17251725
'Verify WEIGHTED_ROUND_ROBIN strategy can be run in a dynamic pool with median runtime statistic',
1726-
ignore: Deno.build.os === 'linux',
1726+
// ignore: Deno.build.os === 'linux',
17271727
fn: async () => {
17281728
const pool = new DynamicThreadPool(
17291729
min,
@@ -2072,7 +2072,7 @@ describe('Selection strategies test suite', () => {
20722072
it({
20732073
name:
20742074
'Verify INTERLEAVED_WEIGHTED_ROUND_ROBIN strategy can be run in a dynamic pool',
2075-
ignore: Deno.build.os === 'linux',
2075+
// ignore: Deno.build.os === 'linux',
20762076
fn: async () => {
20772077
const pool = new DynamicThreadPool(
20782078
min,

0 commit comments

Comments
 (0)