mirror of
https://github.com/encounter/yarn.git
synced 2026-03-30 11:43:44 -07:00
13 lines
465 B
JavaScript
13 lines
465 B
JavaScript
/* @flow */
|
|
|
|
import Git from '../../src/util/git.js';
|
|
|
|
test('cleanUrl', () => {
|
|
expect(Git.cleanUrl('git+https://github.com/npm-opam/ocamlfind.git'))
|
|
.toEqual('https://github.com/npm-opam/ocamlfind.git');
|
|
expect(Git.cleanUrl('https://github.com/npm-opam/ocamlfind.git'))
|
|
.toEqual('https://github.com/npm-opam/ocamlfind.git');
|
|
expect(Git.cleanUrl('git://github.com/npm-opam/ocamlfind.git'))
|
|
.toEqual('git://github.com/npm-opam/ocamlfind.git');
|
|
});
|