mirror of
https://github.com/bower/bower.git
synced 2026-04-24 03:00:19 -04:00
Add initial tests for the GitResolver.
This commit is contained in:
19
test/resolve/resolvers/gitFsResolver.js
Normal file
19
test/resolve/resolvers/gitFsResolver.js
Normal file
@@ -0,0 +1,19 @@
|
||||
describe('GitFsResolver', function () {
|
||||
describe('.resolve', function () {
|
||||
it.skip('should resolve to the latest commit if a repo has no tags');
|
||||
it.skip('should resolve to the specified range');
|
||||
it.skip('should resolve to the specified version');
|
||||
it.skip('should resolve to the specified commit');
|
||||
it.skip('should resolve to the specified branch');
|
||||
it.skip('should resolve to the specified commit');
|
||||
it.skip('should remove the .git folder');
|
||||
it.skip('should not copy the ignored files to the temp directory');
|
||||
});
|
||||
|
||||
describe('.hasNew', function () {
|
||||
it.skip('should detect a new version if the resolution type changed');
|
||||
it.skip('should detect a new version if the resolved version changed');
|
||||
it.skip('should detect a new version if the resolved commit changed (branch)');
|
||||
it.skip('should detect a new version if the resolved commit changed (commit)');
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user