We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed7a93b commit 9394956Copy full SHA for 9394956
test.js
@@ -72,6 +72,12 @@ describe('gitlab urls', function () {
72
var parsed = parse(url)
73
assert.deepEqual(['user', 'test1', ''], parsed)
74
})
75
+
76
+ it('parses git gitlab url', function () {
77
+ var url = 'git@gitlab.team.com:user/test1.git'
78
+ var parsed = parse(url)
79
+ assert.deepEqual(['user', 'test1', ''], parsed)
80
+ })
81
82
83
describe('git @ syntax', function () {
@@ -94,4 +100,4 @@ describe('github enterprise urls', function () {
94
100
95
101
96
102
97
-})
103
+})
0 commit comments