(arch)
| 831 | ); |
| 832 | |
| 833 | function archToString(arch) { |
| 834 | if (arch.match(/web\.cordova/)) { |
| 835 | return "Cordova"; |
| 836 | } |
| 837 | if (arch.match(/web\..*/)) { |
| 838 | return "Client"; |
| 839 | } |
| 840 | if (arch.match(/os.*/)) { |
| 841 | return "Server"; |
| 842 | } |
| 843 | throw new Error("Don't know how to display the arch: " + arch); |
| 844 | } |
| 845 | |
| 846 | buildmessage.enterJob({ |
| 847 | title: "linting files with " + |
no test coverage detected
searching dependent graphs…