Skip to content
This repository has been archived by the owner on May 19, 2018. It is now read-only.

Error on missing expected.json fixture in CI #188

Merged
merged 1 commit into from
Oct 16, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function runTest(test) {
throw err;
}

if (!test.expect.code && !opts.throws) {
if (!test.expect.code && !opts.throws && !process.env.CI) {
test.expect.loc += "on";
return save(test, ast);
}
Expand Down