chore: add in one more test

This commit is contained in:
BluJ
2023-06-09 11:02:36 -06:00
parent b0bfcf47b0
commit ba248eee28
2 changed files with 6 additions and 2 deletions

View File

@@ -12,6 +12,10 @@ describe("splitCommand ", () => {
["cat hello world", ["cat", "hello", "world"]], ["cat hello world", ["cat", "hello", "world"]],
["cat hello 'big world'", ["cat", "hello", "big world"]], ["cat hello 'big world'", ["cat", "hello", "big world"]],
[`cat hello "big world"`, ["cat", "hello", "big world"]], [`cat hello "big world"`, ["cat", "hello", "big world"]],
[
`cat hello "big world's are the greatest"`,
["cat", "hello", "big world's are the greatest"],
],
// Too many spaces // Too many spaces
["cat ", ["cat"]], ["cat ", ["cat"]],
[["cat "], ["cat "]], [["cat "], ["cat "]],

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "@start9labs/start-sdk", "name": "@start9labs/start-sdk",
"version": "0.4.0-rev0.lib0.rc6", "version": "0.4.0-rev0.lib0.rc7",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@start9labs/start-sdk", "name": "@start9labs/start-sdk",
"version": "0.4.0-rev0.lib0.rc6", "version": "0.4.0-rev0.lib0.rc7",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@iarna/toml": "^2.2.5", "@iarna/toml": "^2.2.5",