-
Hi! When I run test I recive this error:
```sh
FAIL src/Button/tests/Button.test.tsx
● Test suite failed to run
`css` template literal evaluated at runtime!
6 | };
7 …
-
I was trying to get test coverage generated by running this command:
`flutter test --coverage --no-test-assets --platform chrome --verbose`
```
07:14 +281 ~2: All tests passed! …
-
### Describe the bug
Example that sort of works:
- With gui but only compile - https://godbolt.org/z/WMG589TGv
- Gui disabled but executing - https://godbolt.org/z/cffsbqe3j
Commit done ba…
-
### Is there an existing issue for this?
- [X] I have searched the existing issues
### Is your feature request related to a problem? Please describe the problem.
adding a service to be inject…
-
By only ever running against prerecorded data, we virtually guarantee that our tests are going to drift and start lying to us over time. We should run against live AWS at some point during CI. It prob…
-
When trying to generate a collection in Postman UI, there are a few options that can applied on a collection:
These options also align with Postman RESTful APIs, for example - generating a mock o…
-
## New Issue Checklist
- [X] I updated my Mockingbird framework and CLI to the latest version
- [X] I searched for [existing GitHub issues](https://github.com/birdrides/mockingbird/issues)
## D…
-
Hi everyone,
I managed to get a segfault, I googled around for solutions and I saw that it might be helpful to do a backtrace with gdb, so I did:
```
Program received signal SIGSEGV, Segmentation fa…
-
The best way to use mock is with a program that will automatically generate the code for the mocks based on the interfaces.
`mockery` pioneered this approach but has some current limitations such as …
-
First of all: Thank you for a very useful library.
I have this (simplified) data structure:
```rust
struct Envelope {
content: T,
}
impl From for Envelope {
fn from(a: A) -> Self…