Skip to content

Commit 53a15fe

Browse files
committed
remove tests
1 parent 47c7af1 commit 53a15fe

File tree

3 files changed

+2
-41
lines changed

3 files changed

+2
-41
lines changed

__tests__/main.test.ts

Lines changed: 0 additions & 36 deletions
This file was deleted.

package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@
1010
"format-check": "prettier --check '**/*.ts'",
1111
"lint": "eslint src/**/*.ts",
1212
"package": "ncc build --source-map --license licenses.txt",
13-
"test": "jest",
14-
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
13+
"all": "npm run build && npm run format && npm run lint && npm run package"
1514
},
1615
"repository": {
1716
"type": "git",
@@ -39,7 +38,6 @@
3938
"eslint": "^7.32.0",
4039
"eslint-plugin-github": "^4.3.2",
4140
"eslint-plugin-jest": "^25.3.2",
42-
"jest": "^27.2.5",
4341
"js-yaml": "^4.1.0",
4442
"prettier": "2.5.1",
4543
"ts-jest": "^27.1.2",

src/github.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,7 @@ export async function generateChangelog(
6565
// Find all the commits between the current release and the last release.
6666
const commits = shell
6767
.exec(
68-
// eslint-disable-next-line no-useless-escape
69-
`git --no-pager -C ~/Desktop/warp/warp log ${lastReleaseVersion}..${currentVersion} --pretty=format:"\"%H\""`,
68+
`git --no-pager -C ~/Desktop/warp/warp log ${lastReleaseVersion}..${currentVersion} --pretty=format:""%H""`,
7069
{silent: true}
7170
)
7271
.stdout.trim()

0 commit comments

Comments
 (0)