You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is mostly motivated by the work on --fmt in #837.
A good way to exercise --fmt and --dump is to make sure that the output is produces, when re-parsed, is semantically equivalent to the original source justfile.
In every integration test, we should:
parse the justfile (expose Compiler::compile to tests)
Convert the compiled Justfile to the string that --dump and --fmt would produce
re-compile that string
Convert the original and dumped justfiles to Summarys
Compare the two summaries to ensure that they're identical
The text was updated successfully, but these errors were encountered:
This is mostly motivated by the work on
--fmt
in #837.A good way to exercise
--fmt
and--dump
is to make sure that the output is produces, when re-parsed, is semantically equivalent to the original source justfile.In every integration test, we should:
Compiler::compile
to tests)--dump
and--fmt
would produceSummary
sThe text was updated successfully, but these errors were encountered: