Allow extra slash on Windows in expandHome tests

Github CI on Windows ends up formatting it as 'd:\\tmp', this causes no issues besides the failing test
This commit is contained in:
Pavel Djundik 2019-08-14 12:01:01 +03:00
parent c546279d89
commit 9eff3b51d7

View file

@ -21,11 +21,13 @@ describe("Helper", function() {
});
it("should not expand paths not starting with tilde", function() {
expect(Helper.expandHome("/tmp")).to.match(/^\/tmp|[A-Z]:\\tmp$/);
expect(Helper.expandHome("/tmp")).to.match(/^\/tmp|[a-zA-Z]:\\{1,2}tmp$/);
});
it("should not expand a tilde in the middle of a string", function() {
expect(Helper.expandHome("/tmp/~foo")).to.match(/^\/tmp\/~foo|[A-Z]:\\tmp\\~foo$/);
expect(Helper.expandHome("/tmp/~foo")).to.match(
/^\/tmp\/~foo|[a-zA-Z]:\\{1,2}?tmp\\{1,2}~foo$/
);
});
it("should return an empty string when given an empty string", function() {