Fix failing snapshot test (#1329)
PR #1325 introduced a failing snapshot test, which was promptly caught by @wchargin. This commit fixes it by running `./scripts/update_snapshots.sh`. Also, I bumped the project JSON version number, which also should have happened in #1325. Test plan: `yarn test --full` passes.
This commit is contained in:
parent
b4463f2ab7
commit
12a3321ea7
|
@ -1 +1 @@
|
|||
[{"type":"sourcecred/project","version":"0.1.0"},{"id":"sourcecred-test/example-github","repoIds":[{"name":"example-github","owner":"sourcecred-test"}]}]
|
||||
[{"type":"sourcecred/project","version":"0.2.0"},{"discourseServer":null,"id":"sourcecred-test/example-github","repoIds":[{"name":"example-github","owner":"sourcecred-test"}]}]
|
|
@ -31,7 +31,7 @@ export type Project = {|
|
|||
|} | null,
|
||||
|};
|
||||
|
||||
const COMPAT_INFO = {type: "sourcecred/project", version: "0.1.0"};
|
||||
const COMPAT_INFO = {type: "sourcecred/project", version: "0.2.0"};
|
||||
|
||||
export type ProjectJSON = Compatible<Project>;
|
||||
|
||||
|
|
Loading…
Reference in New Issue