repository-provider-test-support 1.10.0 → 1.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/src/entry-list-test.mjs +1 -1
- package/src/module.mjs +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "repository-provider-test-support",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.11.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"ava": "^4.0.1",
|
|
35
35
|
"c8": "^7.11.0",
|
|
36
36
|
"documentation": "^13.2.5",
|
|
37
|
-
"repository-provider": "^26.4.
|
|
37
|
+
"repository-provider": "^26.4.2",
|
|
38
38
|
"semantic-release": "^19.0.2"
|
|
39
39
|
},
|
|
40
40
|
"engines": {
|
package/src/entry-list-test.mjs
CHANGED
|
@@ -25,7 +25,7 @@ export async function entryListTest(t, branch, pattern, entryFixtures) {
|
|
|
25
25
|
`${entry.name} '${ef.startsWith}'`
|
|
26
26
|
);
|
|
27
27
|
|
|
28
|
-
const stream = await entry.readStream
|
|
28
|
+
const stream = await entry.readStream;
|
|
29
29
|
const chunks = [];
|
|
30
30
|
for await (const chunk of stream) {
|
|
31
31
|
chunks.push(chunk);
|
package/src/module.mjs
CHANGED
|
@@ -13,6 +13,7 @@ export * from "./entry-list-test.mjs";
|
|
|
13
13
|
export * from "./messages.mjs";
|
|
14
14
|
export * from "./repositories.mjs";
|
|
15
15
|
|
|
16
|
+
|
|
16
17
|
export const REPOSITORY_NAME = "arlac77/sync-test-repository";
|
|
17
18
|
export const REPOSITORY_NAME_GITHUB_HTTP = `https://github.com/${REPOSITORY_NAME}.git`;
|
|
18
19
|
export const REPOSITORY_NAME_GITHUB_GIT = `git@github.com:${REPOSITORY_NAME}.git`;
|
|
@@ -20,6 +21,7 @@ export const REPOSITORY_NAME_WITH_BRANCH = REPOSITORY_NAME + "#preserve-for-test
|
|
|
20
21
|
export const REPOSITORY_NAME_WITH_BRANCH_GITHUB_HTTP = REPOSITORY_NAME_GITHUB_HTTP + "#preserve-for-test";
|
|
21
22
|
export const REPOSITORY_NAME_WITH_BRANCH_GITHUB_GIT = REPOSITORY_NAME_GITHUB_GIT + "#preserve-for-test";
|
|
22
23
|
|
|
24
|
+
export const BITBUCKET_REPOSITORY_NAME = REPOSITORY_NAME;
|
|
23
25
|
|
|
24
26
|
export async function assertBranch(t, branch, fixture, url) {
|
|
25
27
|
if (fixture === undefined) {
|