Skip to content

Commit b9037d5

Browse files
committed
bbs prefix search test
1 parent e90bd73 commit b9037d5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

components/server/src/bitbucket-server/bitbucket-server-repository-provider.spec.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,11 @@ class TestBitbucketServerRepositoryProvider {
172172
const result = await this.service.searchRepos(this.user, "/2k-repos-1076", 100);
173173
expect(result).to.be.empty;
174174
}
175+
176+
@test async test_searchRepos_nameSubstring() {
177+
const result = await this.service.searchRepos(this.user, "repos-1076", 100);
178+
expect(result).to.be.empty;
179+
}
175180
}
176181

177182
module.exports = new TestBitbucketServerRepositoryProvider();

0 commit comments

Comments
 (0)