Problem
Currently, the test:all task does not include integration tests from the test:integration task. This means that running "all tests" doesn't actually run all tests in the project.
Proposed Solution
- Modify the
test:all task to include both unit tests and integration tests
- The
test:all task should truly run all tests in the project
- Consider creating a separate task (e.g.,
test:unit) for running only unit tests if needed
Background
This enhancement was requested to ensure comprehensive test coverage when developers run the "all tests" command.
Related PR: #137
Requested by: @davidlion
Problem
Currently, the
test:alltask does not include integration tests from thetest:integrationtask. This means that running "all tests" doesn't actually run all tests in the project.Proposed Solution
test:alltask to include both unit tests and integration teststest:alltask should truly run all tests in the projecttest:unit) for running only unit tests if neededBackground
This enhancement was requested to ensure comprehensive test coverage when developers run the "all tests" command.
Related PR: #137
Requested by: @davidlion