You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it("should parse basic feat with a PR number",async()=>{
30
30
constresult=awaitparseCommitMessage("feat: This is a feature [#1]","https://github.com/loopwerk/tag-changelog",fetchUserFunc);
31
31
32
-
assert.strictEqual(result.subject,"This is a feature [[#1](https://github.com/loopwerk/tag-changelog/pull/1) by [kevinrenskers](https://github.com/kevinrenskers)]");
32
+
assert.strictEqual(
33
+
result.subject,
34
+
"This is a feature [[#1](https://github.com/loopwerk/tag-changelog/pull/1) by [kevinrenskers](https://github.com/kevinrenskers)]"
it("should parse a missing type with a PR number",async()=>{
66
69
constresult=awaitparseCommitMessage("This is a commit [#1]","https://github.com/loopwerk/tag-changelog",fetchUserFunc);
67
70
68
-
assert.strictEqual(result.subject,"This is a commit [[#1](https://github.com/loopwerk/tag-changelog/pull/1) by [kevinrenskers](https://github.com/kevinrenskers)]");
71
+
assert.strictEqual(
72
+
result.subject,
73
+
"This is a commit [[#1](https://github.com/loopwerk/tag-changelog/pull/1) by [kevinrenskers](https://github.com/kevinrenskers)]"
0 commit comments