Stephan Meijer
Stephan Meijer
I would like to contribute to this, as it helps our issue to be solved as well: https://github.com/tophat/syrupy/issues/837
Do you need some help with this?
I need this merged!
Please merge #778 first/
I want to use ToroHook in my own project, is there any possibility of splitting ToroRouter and ToroHook in 2 projects?
I would really appreciate this. functionality like `setExamples(examples)`, `addExample(example)` and a property like `.examples` would help within multiple implementations of webframeworks without them all having to do the same thing:...
@kibertoad I created a more formal proposal and a Pull Request. Curious about your opinion.
I saw a huge increase in performance after splitting my tests in separate files,but it still seems to take a long time for `syrupy` to parse.
As also mentioned in #119, with this extension I reduced the time my tests took from around 200 seconds to around 5. ``` class SingleFileAmberSnapshotExtension(SingleFileSnapshotExtension): def serialize(self, data, **kwargs): return...
Got things working perfectly with the following snipped: ```py class SingleFileAmberSnapshotExtension(SingleFileSnapshotExtension): _file_extension = 'ambr' _write_mode = WriteMode.TEXT def serialize(self, data, **kwargs): return AmberDataSerializer.serialize(data, **kwargs) ``` This means I am not...