From eb036362ba20c5bb96e3f6b1fde2a9384bf5926a Mon Sep 17 00:00:00 2001 From: Mike Pirog Date: Mon, 22 Jul 2024 16:52:24 -0400 Subject: [PATCH] #45: allow test skipping part 2 --- README.md | 2 +- cli/default.js | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 7045d96..d558b29 100644 --- a/README.md +++ b/README.md @@ -129,7 +129,7 @@ If you want to learn more about the syntax and how `leia` puts together the abov ## Skipping -You can also skip tests. This is useful if you want to stub out a test to do later but don't have the time to do right now. +You can also skip tests. This is useful if you want to stub out a test for later. ```bash # Should write this test later and dont want to forget it diff --git a/cli/default.js b/cli/default.js index 857ef16..076d77d 100644 --- a/cli/default.js +++ b/cli/default.js @@ -123,7 +123,6 @@ class LeiaCommand extends Command { .fromPairs() .value(); - // make sure we split any headers that need to be split ['setupHeader', 'testHeader', 'cleanupHeader'].forEach((header) => { if (options[header].length === 1) options[header] = options[header][0].split(',');