1 // Jest Snapshot v1, https://goo.gl/fbAQLP
3 exports[`should render correctly and allow token generation: cfamily linux, copy additional properties 1`] = `"sonar.cfamily.build-wrapper-output=bw-output"`;
5 exports[`should render correctly and allow token generation: cfamily linux, copy build-wrapper command 1`] = `"./build-wrapper-linux-x86/build-wrapper-linux-x86-64 --out-dir bw-output <your build command here>"`;
7 exports[`should render correctly and allow token generation: cfamily linux, copy shell script 1`] = `
8 "curl 'http://localhost/static/cpp/build-wrapper-linux-x86.zip' --output build-wrapper.zip
9 unzip build-wrapper.zip"
12 exports[`should render correctly and allow token generation: cfamily mac, copy additional properties 1`] = `"sonar.cfamily.build-wrapper-output=bw-output"`;
14 exports[`should render correctly and allow token generation: cfamily mac, copy build-wrapper command 1`] = `"./build-wrapper-macosx-x86/build-wrapper-macosx-x86 --out-dir bw-output <your build command here>"`;
16 exports[`should render correctly and allow token generation: cfamily mac, copy shell script 1`] = `
17 "curl 'http://localhost/static/cpp/build-wrapper-macosx-x86.zip' --output build-wrapper.zip
18 unzip build-wrapper.zip"
21 exports[`should render correctly and allow token generation: cfamily win, copy additional properties 1`] = `"sonar.cfamily.build-wrapper-output=bw-output"`;
23 exports[`should render correctly and allow token generation: cfamily win, copy build-wrapper command 1`] = `"build-wrapper-win-x86/build-wrapper-win-x86-64.exe --out-dir bw-output <your build command here>"`;
25 exports[`should render correctly and allow token generation: cfamily win, copy shell script 1`] = `
26 "Invoke-WebRequest -Uri 'http://localhost/static/cpp/build-wrapper-win-x86.zip' -OutFile 'build-wrapper.zip'
27 Expand-Archive -Path 'build-wrapper.zip' -DestinationPath '.'"
30 exports[`should render correctly and allow token generation: gradle, copy additional properties 1`] = `
31 "# Additional properties that will be passed to the scanner,
32 # Put one key=value per line, example:
33 # sonar.exclusions=**/*.bin
35 sonar.projectName=MyProject
39 exports[`should render correctly and allow token generation: maven, copy additional properties 1`] = `
40 "# Additional properties that will be passed to the scanner,
41 # Put one key=value per line, example:
42 # sonar.exclusions=**/*.bin
44 sonar.projectName=MyProject