@Library('release') _

sorryCypressPipeline.setupParameters(additionalParameters: [
    string(name: 'SLACK_CHANNEL', defaultValue: 'chat-e2e-cypress-tests', description: 'Slack channel to send notification'),
    string(name: 'TAGS', defaultValue: '@tier2', description: 'Which test you wants to run (EX: @tier1 @tier2) use space for separating tags')
])

ArrayList<String> listOfTests = [
    'chat'
]

sorryCypressPipeline(
    listOfTests: listOfTests,
    reportToNR: true,
    service: 'ta-chat-mod',
    numberOfExecutors: 6,
    sorryCypressProject: 'chat',
    slackChannel: params.SLACK_CHANNEL
)
