Last updated:
0 purchases
inline snapshot
Inline snapshot #
A library that supports inline snapshot testing for Dart, inspired by expect-test, rspec-inline-snapshot, Jest, and others!
https://user-images.githubusercontent.com/10344925/208234218-a1629767-4dc6-4455-9407-c99ea86f2265.mov
Features #
Performs inline snapshot testing
Allows updating expected results based on actual results
What is convenient? #
Expected results are not written to an external file, but rather stored in the same location as the input. This makes it easy to verify the input and expected result together. Since the test can be automatically updated, the only cost of modifying the test is reviewing the differences detected.
Here are some examples of cases where inline snapshot testing might be useful:
Testing parser results (e.g., ASTs) in programming languages
Testing the output of a code formatter
Testing the output of a code minifier
Testing the output of a templating engine
Testing the output of a serialization/deserialization process
Testing the output of a data transformation or mapping function
In each of these cases, the expected results are likely to be small and subject to change, and inline snapshot testing allows you to easily update the expected results and verify the input and output together in the same location.
Getting started #
Add the following dev dependency to your pubspec.yaml file:
dev_dependencies:
inline_snapshot: ^1.0.2
copied to clipboard
Usage #
import 'package:test/test.dart';
import 'package:inline_snapshot/inline_snapshot.dart';
void main() {
tearDownAll(() async {
await Expect.apply();
});
group('A group of tests', () {
test('First Test', () {
var e = Expect();
// ^Replace "actual string" with `UPDATE_EXPECT=1 dart test`
e.eq("actual string");
});
});
}
copied to clipboard
In the above example, the Expect object is empty. You can update the expected result in the source code by running the following command: UPDATE_EXPECT=true dart test.
This will update the expected result in the source code, as shown below:
import 'package:test/test.dart';
import 'package:inline_snapshot/inline_snapshot.dart';
void main() {
tearDownAll(() async {
await Expect.apply();
});
group('A group of tests', () {
test('First Test', () {
var e = Expect("actual string");
// ^replaced "actual string"!!
e.eq("actual string");
});
});
}
copied to clipboard
You can set UPDATE_EXPECT to either 1 or true.
If it is not specified, the Expect object behaves similarly to expect(actual, expected), with leading newlines in the expected result being removed before comparison.
How it works #
When you call Expect("expect string"), the expected result and the location of the caller are stored. When Expect#eq(actual: String) is called, actual is compared to the expected result. If they match, the test is considered a success and no further action is taken. If they do not match, the expected result is marked for replacement. When Expect.apply() is executed, the actual values marked for replacement are replaced with the expected results.
Contributors #
ktanaka101 - creator, maintainer
License #
MIT
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.