]> source.dussan.org Git - sonarqube.git/blob
b231c344316a5b1529b090ee37ab9f503786c85b
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should render correctly 1`] = `
4 <Fragment>
5   <li
6     className="abs-width-600"
7   >
8     <SentenceWithFilename
9       filename="build.gradle"
10       translationKey="onboarding.tutorial.with.jenkins.jenkinsfile.gradle.step2"
11     />
12     <CodeSnippet
13       snippet="plugins {
14   id "org.sonarqube" version "3.5.0.2730"
15 }
16
17 sonar {
18   properties {
19     property "sonar.projectKey", "my-project"
20     property "sonar.projectName", "MyProject"
21   }
22 }"
23     />
24   </li>
25   <CreateJenkinsfileBulletPoint
26     snippet="node {
27   stage('SCM') {
28     checkout scm
29   }
30   stage('SonarQube Analysis') {
31     withSonarQubeEnv() {
32       sh "./gradlew sonar"
33     }
34   }
35 }"
36   />
37   <FinishButton
38     onClick={[MockFunction]}
39   />
40 </Fragment>
41 `;