From dd7edfb3584192c7ee0999152ec7ebd746378124 Mon Sep 17 00:00:00 2001 From: Trent Mick Date: Tue, 17 Sep 2024 07:29:49 -0700 Subject: [PATCH] test(express): drop express@5 from TAV tests (#4239) We don't yet support instrumenting express@5. 5.0.0 was recently released. Our TAV config was including express@5 in tests. Refs: https://github.com/elastic/apm-agent-nodejs/issues/4238 --- .tav.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.tav.yml b/.tav.yml index 1a0bb7ce1c..4b8f54d984 100644 --- a/.tav.yml +++ b/.tav.yml @@ -188,10 +188,7 @@ graphql: express: versions: mode: latest-minors - # include requires an upper bound. v5 is still in beta - # (5.0.0-beta.1": "2022-02-15T01:11:25.229Z) but we use 6 to make sure any - # future release is included if we udpate - include: '>=4 <6' # latest minors subset of '>=4 <6' + include: '>=4 <5' commands: - node test/instrumentation/modules/express/basic.test.js - node test/instrumentation/modules/express/capture-exceptions-off.test.js