]> source.dussan.org Git - sonarqube.git/blob
b35f87d237e46c3c6af7c49e8870299eeab7bd54
[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   }
21 }"
22     />
23   </li>
24   <CreateJenkinsfileBulletPoint
25     snippet="node {
26   stage('SCM') {
27     checkout scm
28   }
29   stage('SonarQube Analysis') {
30     withSonarQubeEnv() {
31       sh "./gradlew sonar"
32     }
33   }
34 }"
35   />
36   <FinishButton
37     onClick={[MockFunction]}
38   />
39 </Fragment>
40 `;