Skip to content

Commit 5c12524

Browse files
committed
test: update paths.test.ts
1 parent eea02ab commit 5c12524

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

src/test/lib/paths.test.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,11 @@ describe("Path handling", function () {
3838
it('returns three items joined with commands and an an "and"', function () {
3939
assert.strictEqual(_join(["foo", "bar", "bazz"]), "foo, bar and bazz");
4040
});
41+
42+
it("returns empty string for now items", function () {
43+
assert.strictEqual(_join([]), "");
44+
});
45+
4146
});
4247

4348
describe("#friendlyFile", function () {

0 commit comments

Comments
 (0)