Is it because connecting to and retrieving data from the database adds extra overhead
Besides that, additional time is spent to fill temp database with test data, and it is done again before each test.
I’ve always wondered why feature tests, especially those that interact with databases, tend to be slower than unit tests. Is it because connecting to and retrieving data from the database adds extra overhead, or are there other factors involved?
Is it because connecting to and retrieving data from the database adds extra overhead
Besides that, additional time is spent to fill temp database with test data, and it is done again before each test.
Please or to participate in this conversation.