diff --git a/examples/advanced-project-js/src/__checks__/utils/website-groups.check.js b/examples/advanced-project-js/src/__checks__/utils/website-groups.check.js index ec0ea13da..284424074 100644 --- a/examples/advanced-project-js/src/__checks__/utils/website-groups.check.js +++ b/examples/advanced-project-js/src/__checks__/utils/website-groups.check.js @@ -1,5 +1,5 @@ const { CheckGroupV2, Frequency, AlertEscalationBuilder } = require('checkly/constructs') -const { smsChannel, emailChannel } = require('./alert-channels') +const { emailChannel } = require('./alert-channels') // This file defines two groups, one for synthetics monitors and one for uptime // monitors. Read more about group configuration at: https://www.checklyhq.com/docs/groups/ @@ -17,7 +17,7 @@ const syntheticGroup = new CheckGroupV2('check-group-synthetics', { { amount: 2, interval: 5 }, // Send 2 reminders, 5 minutes apart { enabled: true, percentage: 50 } // Alert if 50% of parallel runs fail ), - alertChannels: [emailChannel, smsChannel], + alertChannels: [emailChannel], environmentVariables: [{ key: 'AUTHOR_NAME', value: 'Fric Eromm' }], concurrency: 10 }) diff --git a/examples/advanced-project/src/__checks__/utils/website-groups.check.ts b/examples/advanced-project/src/__checks__/utils/website-groups.check.ts index 318ed92d0..d03eb1f7c 100644 --- a/examples/advanced-project/src/__checks__/utils/website-groups.check.ts +++ b/examples/advanced-project/src/__checks__/utils/website-groups.check.ts @@ -1,5 +1,5 @@ import { CheckGroupV2, Frequency, AlertEscalationBuilder } from 'checkly/constructs' -import { smsChannel, emailChannel } from './alert-channels' +import { emailChannel } from './alert-channels' // This file defines two groups, one for synthetics monitors and one for uptime // monitors. Read more about group configuration at: https://www.checklyhq.com/docs/groups/ @@ -17,7 +17,7 @@ export const syntheticGroup = new CheckGroupV2('check-group-synthetics', { { amount: 2, interval: 5 }, // Send 2 reminders, 5 minutes apart { enabled: true, percentage: 50 } // Alert if 50% of parallel runs fail ), - alertChannels: [emailChannel, smsChannel], + alertChannels: [emailChannel], environmentVariables: [{ key: 'AUTHOR_NAME', value: 'Fric Eromm' }], concurrency: 10 })