repository-provider-test-support 2.2.37 → 2.2.38
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/provider-test.mjs +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "repository-provider-test-support",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.38",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"ava": "^5.2.0",
|
|
34
34
|
"c8": "^7.13.0",
|
|
35
35
|
"documentation": "^14.0.1",
|
|
36
|
-
"repository-provider": "^32.6.
|
|
36
|
+
"repository-provider": "^32.6.8",
|
|
37
37
|
"semantic-release": "^20.1.1"
|
|
38
38
|
},
|
|
39
39
|
"engines": {
|
package/src/provider-test.mjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export async function providerTest(t, provider) {
|
|
2
2
|
t.is(provider.provider, provider, "be our own provider");
|
|
3
3
|
t.truthy(provider.name, "has a name");
|
|
4
|
-
t.truthy(provider.fullName,
|
|
5
|
-
t.truthy(provider.url,
|
|
4
|
+
t.truthy(provider.fullName, `${provider.name} has a fullName`);
|
|
5
|
+
t.truthy(provider.url, `${provider.name} has a url`);
|
|
6
6
|
|
|
7
7
|
/*
|
|
8
8
|
const repositoryGroup = await provider.repositoryGroup();
|