Skip to content

Commit

Permalink
feat: add tests for tsconfig behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
sorccu committed Jan 17, 2025
1 parent 1b5e278 commit 23f4942
Show file tree
Hide file tree
Showing 21 changed files with 7,091 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules/
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v22.12.0
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import { defineConfig } from 'checkly'

const config = defineConfig({
projectName: 'TSConfig Paths Sample Project',
logicalId: 'tsconfig-paths-sample-project',
checks: {
frequency: 10,
locations: ['us-east-1'],
tags: ['mac'],
runtimeId: '2024.09',
checkMatch: '**/__checks__/**/*.check.ts',
browserChecks: {
testMatch: '**/__checks__/**/*.spec.ts',
},
},
cli: {
runLocation: 'us-east-1',
reporters: ['list'],
},
})

export default config
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const value = 'file1'
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const value = 'file2'
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { value } from './file2'
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const value = 'file2'
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export { value as value1 } from './file1'
export { value as value2 } from './file2'
export { value as value3 } from './folder/file1'
Loading

0 comments on commit 23f4942

Please sign in to comment.