Skip to content

Commit ac66255

Browse files
committed
chore: simplify bundling and cleanup tar creation [sc-23256]
1 parent 8306173 commit ac66255

File tree

10 files changed

+647
-77
lines changed

10 files changed

+647
-77
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import { defineConfig } from 'checkly'
2+
import { AlertEscalationBuilder, RetryStrategyBuilder } from 'checkly/constructs'
3+
4+
/**
5+
* See https://www.checklyhq.com/docs/cli/project-structure/
6+
*/
7+
const config = defineConfig({
8+
/* A human friendly name for your project */
9+
projectName: 'Advanced Example Project',
10+
/** A logical ID that needs to be unique across your Checkly account,
11+
* See https://www.checklyhq.com/docs/cli/constructs/ to learn more about logical IDs.
12+
*/
13+
logicalId: 'advanced-example-project',
14+
cli: {
15+
/* The default datacenter location to use when running npx checkly test */
16+
runLocation: 'eu-west-1',
17+
/* An array of default reporters to use when a reporter is not specified with the "--reporter" flag */
18+
reporters: ['list'],
19+
/* How many times to retry a failing test run when running `npx checkly test` or `npx checkly trigger` (max. 3) */
20+
retries: 0,
21+
},
22+
})
23+
24+
export default config
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import helper2Function from './helper2'
2+
3+
export default function helperFunction () {
4+
helper2Function()
5+
console.log('I am a helper function!');
6+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export default function helper2Function () {
2+
console.log('I am a helper 2 function!');
3+
}

0 commit comments

Comments
 (0)