1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
From: =?utf-8?b?SsOpcsOpbXkgTGFs?= <kapouer@melix.org>
Date: Mon, 23 Feb 2026 17:50:12 +0100
Subject: Increase test timeout for slow archs
Forwarded: no
Last-Update: 2025-12-02
---
test/standalone_events.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test/standalone_events.js b/test/standalone_events.js
index eb42afb..5a6d07d 100644
--- a/test/standalone_events.js
+++ b/test/standalone_events.js
@@ -1,7 +1,7 @@
var browserify = require('../');
var test = require('tap').test;
-test('standalone bundle close event', {timeout: 1000}, function (t) {
+test('standalone bundle close event', {timeout: 20000}, function (t) {
t.plan(1);
var ended = false;
|