Lines Matching refs:url
20 repository: { no: 'url' },
55 repository: { url: 'git://github.com/foo/hostedgitobj' },
60 repository: { url: 'git@github.com:foo/hostedgitatobj' },
65 repository: { url: 'ssh://git@github.com/foo/hostedsshobj' },
70 repository: { url: 'git+ssh://git@github.com/foo/hostedgitsshobj' },
75 repository: { url: 'git+http://github.com/foo/hostedgithttpobj' },
80 repository: { url: 'git+https://github.com/foo/hostedgithttpsobj' },
115 repository: { url: 'git://gothib.com/foo/unhostedgitobj' },
120 repository: { url: 'git@gothib.com:foo/unhostedgitatobj' },
125 repository: { url: 'ssh://git@gothib.com/foo/unhostedsshobj' },
130 repository: { url: 'git+ssh://git@gothib.com/foo/unhostedgitsshobj' },
135 repository: { url: 'git+http://gothib.com/foo/unhostedgithttpobj' },
140 repository: { url: 'git+https://gothib.com/foo/unhostedgithttpsobj' },
147 url: 'git+https://github.com/foo/test-repo-with-directory.git',
190 '{LIB}/utils/open-url.js': async (_, url) => {
191 opened[url] = opened[url] || 0
192 opened[url]++
233 for (const [pkg, url] of Object.entries(expect)) {
235 t.equal(opened[url], 1, `opened ${url}`)
239 t.test('fail if cannot figure out repo url', async t => {
260 t.equal(opened['https://example.com/thispkg'], 1, 'opened expected url', { opened })
318 }, opened, 'opened url for package arg, not workspace')