Skip to content

Commit

Permalink
ci(test): fixes integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
KenEucker committed Jan 22, 2024
1 parent 5563492 commit 07eedf5
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -35,4 +35,4 @@ jobs:
- name: Listing
run: ls -a
- name: Run tests
run: node -e "console.log(require.resolve('biketag'))" && npm run test:ci
run: npm run test:ci
2 changes: 1 addition & 1 deletion test/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"private": true,
"dependencies": {
"biketag": "file:.."
"biketag": "file:../.."
}
}
6 changes: 3 additions & 3 deletions test/src/config.ts
Original file line number Diff line number Diff line change
@@ -7,8 +7,8 @@ export const apiCredentials = {
},
}

export const packagePath = '../dist'
export const testPath = path.resolve(__dirname, '../dist')
export const assetsPath = path.resolve(__dirname, '../assets')
export const packagePath = '../../dist'
export const rootPath = path.resolve(__dirname, '../../')
export const testPath = path.resolve(__dirname, '../../dist')
export const assetsPath = path.resolve(__dirname, '../assets')
export const srcPath = path.resolve(rootPath, 'src')

0 comments on commit 07eedf5

Please sign in to comment.