mirror of
https://github.com/Start9Labs/start-sdk.git
synced 2026-03-26 10:21:55 +00:00
chore: add in one more test
This commit is contained in:
@@ -12,6 +12,10 @@ describe("splitCommand ", () => {
|
||||
["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's are the greatest"`,
|
||||
["cat", "hello", "big world's are the greatest"],
|
||||
],
|
||||
// Too many spaces
|
||||
["cat ", ["cat"]],
|
||||
[["cat "], ["cat "]],
|
||||
|
||||
Reference in New Issue
Block a user