Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
illright committed Dec 27, 2024
1 parent d618d82 commit e108162
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 0 additions & 6 deletions integration-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,7 @@
".": "./src/index.ts"
},
"type": "module",
"license": "MIT",
"authors": [
{
"name": "Anton Medvedev",
"email": "[email protected]",
"url": "https://github.com/unordinarity"
},
{
"name": "Lev Chelyadinov",
"email": "[email protected]",
Expand Down
6 changes: 6 additions & 0 deletions integration-tests/scripts/update-windows-snapshots.mjs
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/**
* Run this script on Mac or Linux when you update test snapshots to port these changes over to Windows snapshots.
*
* $ pnpm run update-windows-snapshots
*/

import * as fs from 'node:fs/promises'
import { dirname, join } from 'node:path'
import { fileURLToPath } from 'node:url'
Expand Down
4 changes: 2 additions & 2 deletions integration-tests/utils/get-bin-path.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { fileURLToPath } from 'node:url'
import { getBinPath } from 'get-bin-path'

/**
* Resolve the full path to the built JS file of the CLI.
* Resolve the full path to the built JS file of Steiger.
*
* Rejects if the file doesn't exist.
*/
Expand All @@ -14,7 +14,7 @@ export async function getSteigerBinPath() {
try {
await fs.stat(steiger)
} catch {
console.error('Run `npm run build` before running integration tests')
console.error('Run `turbo build` before running integration tests')
process.exit(1)
}

Expand Down

0 comments on commit e108162

Please sign in to comment.