mirror of
https://github.com/status-im/sourcecred.git
synced 2025-01-19 17:09:39 +00:00
4b0693e2a7
Summary: CI mode prevents Jest from automatically writing snapshots, and also causes obsolete snapshots to be an error instead of a warning. This is consistent with the behavior on Travis, where the `CI=1` environment variable is set. It should thus be the default when running `yarn test` (but not `yarn unit`). Test Plan: Add a file `src/foo.test.js`: ```js // @flow describe("foo", () => { it("bar", () => { expect("baz").toMatchSnapshot(); }); }); ``` Note that `yarn test` fails with the message, “new snapshot was not written”. Revert this change, then re-run `yarn test`; note that it passes, writing a snapshot. Then, reinstate this change and delete `src/foo.test.js`. Note that running `yarn test` fails, due to an obsolete snapshot. Revert the change again, and watch `yarn test` pass despite the obsolete snapshot. Finally, remove the snapshot. :-) wchargin-branch: test-jest-ci
125 lines
2.6 KiB
JavaScript
125 lines
2.6 KiB
JavaScript
// @flow
|
|
|
|
const tmp = require("tmp");
|
|
|
|
const execDependencyGraph = require("../src/tools/execDependencyGraph");
|
|
|
|
main();
|
|
|
|
function main() {
|
|
const mode =
|
|
process.env["TRAVIS_EVENT_TYPE"] === "cron" ||
|
|
process.argv.includes("--full")
|
|
? "FULL"
|
|
: "BASIC";
|
|
execDependencyGraph(makeTasks(mode)).then(({success}) => {
|
|
process.exitCode = success ? 0 : 1;
|
|
});
|
|
}
|
|
|
|
function makeTasks(mode /*: "BASIC" | "FULL" */) {
|
|
const backendOutput = tmp.dirSync({
|
|
unsafeCleanup: true,
|
|
prefix: "sourcecred-test-",
|
|
}).name;
|
|
console.log("tmpdir for backend output: " + backendOutput);
|
|
|
|
function withSourcecredBinEnv(
|
|
invocation /*: $ReadOnlyArray<string> */
|
|
) /*: string[] */ {
|
|
return ["env", "SOURCECRED_BIN=" + backendOutput, ...invocation];
|
|
}
|
|
|
|
const basicTasks = [
|
|
{
|
|
id: "ensure-flow-typing",
|
|
cmd: ["./scripts/ensure-flow.sh"],
|
|
deps: [],
|
|
},
|
|
{
|
|
// eslint-disable-next-line no-useless-concat
|
|
id: "check-stop" + "ships",
|
|
// eslint-disable-next-line no-useless-concat
|
|
cmd: ["./scripts/check-stop" + "ships.sh"],
|
|
deps: [],
|
|
},
|
|
{
|
|
id: "check-pretty",
|
|
cmd: ["npm", "run", "--silent", "check-pretty"],
|
|
deps: [],
|
|
},
|
|
{
|
|
id: "lint",
|
|
cmd: ["npm", "run", "--silent", "lint"],
|
|
deps: [],
|
|
},
|
|
{
|
|
id: "flow",
|
|
cmd: [
|
|
"npm",
|
|
"run",
|
|
"--silent",
|
|
"flow",
|
|
"--",
|
|
"--quiet",
|
|
"--max-warnings=0",
|
|
],
|
|
deps: [],
|
|
},
|
|
{
|
|
id: "unit",
|
|
cmd: ["npm", "run", "--silent", "unit", "--", "--ci"],
|
|
deps: [],
|
|
},
|
|
{
|
|
id: "backend",
|
|
cmd: [
|
|
"npm",
|
|
"run",
|
|
"--silent",
|
|
"backend",
|
|
"--",
|
|
"--output-path",
|
|
backendOutput,
|
|
],
|
|
deps: [],
|
|
},
|
|
{
|
|
id: {BASIC: "sharness", FULL: "sharness-full"}[mode],
|
|
cmd: withSourcecredBinEnv([
|
|
"npm",
|
|
"run",
|
|
"--silent",
|
|
{BASIC: "sharness", FULL: "sharness-full"}[mode],
|
|
]),
|
|
deps: ["backend"],
|
|
},
|
|
];
|
|
const extraTasks = [
|
|
{
|
|
id: "fetchGithubRepoTest",
|
|
cmd: withSourcecredBinEnv([
|
|
"./src/plugins/github/fetchGithubRepoTest.sh",
|
|
"--no-build",
|
|
]),
|
|
deps: ["backend"],
|
|
},
|
|
{
|
|
id: "loadRepositoryTest",
|
|
cmd: withSourcecredBinEnv([
|
|
"./src/plugins/git/loadRepositoryTest.sh",
|
|
"--no-build",
|
|
]),
|
|
deps: ["backend"],
|
|
},
|
|
];
|
|
switch (mode) {
|
|
case "BASIC":
|
|
return basicTasks;
|
|
case "FULL":
|
|
return [].concat(basicTasks, extraTasks);
|
|
default:
|
|
/*:: (mode: empty); */ throw new Error(mode);
|
|
}
|
|
}
|