repository-provider-test-support 3.1.2 → 3.1.3

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/README.md CHANGED
@@ -1,5 +1,6 @@
1
1
  [![npm](https://img.shields.io/npm/v/repository-provider-test-support.svg)](https://www.npmjs.com/package/repository-provider-test-support)
2
2
  [![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)
3
+ [![Typed with TypeScript](https://flat.badgen.net/badge/icon/Typed?icon=typescript\&label\&labelColor=blue\&color=555555)](https://typescriptlang.org)
3
4
  [![bundlejs](https://deno.bundlejs.com/?q=repository-provider-test-support\&badge=detailed)](https://bundlejs.com/?q=repository-provider-test-support)
4
5
  [![downloads](http://img.shields.io/npm/dm/repository-provider-test-support.svg?style=flat-square)](https://npmjs.org/package/repository-provider-test-support)
5
6
  [![GitHub Issues](https://img.shields.io/github/issues/arlac77/repository-provider-test-support.svg?style=flat-square)](https://github.com/arlac77/repository-provider-test-support/issues)
@@ -21,6 +22,15 @@ test support for repository providers
21
22
 
22
23
  * [generateBranchName](#generatebranchname)
23
24
  * [Parameters](#parameters)
25
+ * [generateBranchName](#generatebranchname-1)
26
+ * [Parameters](#parameters-1)
27
+
28
+ ## generateBranchName
29
+
30
+ ### Parameters
31
+
32
+ * `repository`  
33
+ * `pattern`  
24
34
 
25
35
  ## generateBranchName
26
36
 
package/package.json CHANGED
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "repository-provider-test-support",
3
- "version": "3.1.2",
3
+ "version": "3.1.3",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": true
7
7
  },
8
+ "types": "./types/module.d.mts",
8
9
  "exports": {
9
10
  ".": {
10
11
  "default": "./src/module.mjs",
11
12
  "types": "./types/module.d.mts"
12
13
  }
13
14
  },
14
- "types": "./types/module.d.mts",
15
15
  "description": "test support for repository providers",
16
16
  "keywords": [
17
17
  "repository-provider"
@@ -41,7 +41,7 @@
41
41
  "ava": "^6.1.1",
42
42
  "c8": "^9.1.0",
43
43
  "documentation": "^14.0.3",
44
- "repository-provider": "^35.2.9",
44
+ "repository-provider": "^35.2.11",
45
45
  "semantic-release": "^23.0.2",
46
46
  "typescript": "^5.3.3"
47
47
  },
@@ -107,5 +107,5 @@ export async function pullRequestList(t, provider, repoName) {
107
107
  prs.push(pr);
108
108
  }
109
109
 
110
- t.true(prs.length >= 2);
110
+ t.true(prs.length >= 2, `more than two PRs ${prs.length}`);
111
111
  }