From 483bb5cdcd705864b779163f45b5dfff13a0b616 Mon Sep 17 00:00:00 2001 From: Emmanuel Pire Date: Tue, 9 Jul 2024 15:38:29 +0200 Subject: [PATCH] remove only --- test/ca.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/ca.spec.ts b/test/ca.spec.ts index 587e90b04..4bcbc7566 100644 --- a/test/ca.spec.ts +++ b/test/ca.spec.ts @@ -10,7 +10,7 @@ import { CA, generateCACertificate } from '../src/util/tls'; const nodeMajorVersion = parseInt(process.versions.node.split('.')[0], 10); nodeOnly(() => { - describe.only("Certificate generation", () => { + describe("Certificate generation", () => { const caKey = fs.readFile(path.join(__dirname, 'fixtures', 'test-ca.key'), 'utf8'); const caCert = fs.readFile(path.join(__dirname, 'fixtures', 'test-ca.pem'), 'utf8');