1
0
mirror of synced 2026-01-07 00:05:48 -05:00
Files
airbyte/airbyte-e2e-testing/build.gradle
Artem Astapenko 29482430ea Jamakase/add cypress (#2199)
* Add data-id to controls

* Add tests

* Add e2e test starting

* Add skip onboarding test
2021-03-03 07:26:21 +07:00

21 lines
331 B
Groovy

plugins {
id "base"
id "com.github.node-gradle.node" version "2.2.4"
}
node {
download = true
version = "14.11.0"
}
task e2etest(type: NpmTask) {
dependsOn npmInstall
args = ['run', 'cypress:ci']
inputs.files fileTree('cypress')
inputs.file 'package.json'
inputs.file 'package-lock.json'
}