From f0c25e89f510740601362de890015cfe4af4ff51 Mon Sep 17 00:00:00 2001 From: Carlos Fuentes Date: Fri, 5 Jan 2024 10:43:27 +0100 Subject: [PATCH] test: move tests to 'right' path --- test/{ => node-test}/diagnostics-channel/connect-error.js | 2 +- test/{ => node-test}/diagnostics-channel/error.js | 0 test/{ => node-test}/diagnostics-channel/get.js | 0 test/{ => node-test}/diagnostics-channel/post-stream.js | 0 test/{ => node-test}/diagnostics-channel/post.js | 2 +- 5 files changed, 2 insertions(+), 2 deletions(-) rename test/{ => node-test}/diagnostics-channel/connect-error.js (97%) rename test/{ => node-test}/diagnostics-channel/error.js (100%) rename test/{ => node-test}/diagnostics-channel/get.js (100%) rename test/{ => node-test}/diagnostics-channel/post-stream.js (100%) rename test/{ => node-test}/diagnostics-channel/post.js (99%) diff --git a/test/diagnostics-channel/connect-error.js b/test/node-test/diagnostics-channel/connect-error.js similarity index 97% rename from test/diagnostics-channel/connect-error.js rename to test/node-test/diagnostics-channel/connect-error.js index a3bf2a45de7..35559fab86a 100644 --- a/test/diagnostics-channel/connect-error.js +++ b/test/node-test/diagnostics-channel/connect-error.js @@ -12,7 +12,7 @@ try { process.exit(0) } -const { Client } = require('../..') +const { Client } = require('../../..') test('Diagnostics channel - connect error', (t) => { const connectError = new Error('custom error') diff --git a/test/diagnostics-channel/error.js b/test/node-test/diagnostics-channel/error.js similarity index 100% rename from test/diagnostics-channel/error.js rename to test/node-test/diagnostics-channel/error.js diff --git a/test/diagnostics-channel/get.js b/test/node-test/diagnostics-channel/get.js similarity index 100% rename from test/diagnostics-channel/get.js rename to test/node-test/diagnostics-channel/get.js diff --git a/test/diagnostics-channel/post-stream.js b/test/node-test/diagnostics-channel/post-stream.js similarity index 100% rename from test/diagnostics-channel/post-stream.js rename to test/node-test/diagnostics-channel/post-stream.js diff --git a/test/diagnostics-channel/post.js b/test/node-test/diagnostics-channel/post.js similarity index 99% rename from test/diagnostics-channel/post.js rename to test/node-test/diagnostics-channel/post.js index 30203a7e7c7..1f0475bd556 100644 --- a/test/diagnostics-channel/post.js +++ b/test/node-test/diagnostics-channel/post.js @@ -12,7 +12,7 @@ try { process.exit(0) } -const { Client } = require('../..') +const { Client } = require('../../..') const { createServer } = require('http') test('Diagnostics channel - post', (t) => {