This removes the Mocha, Sinon and Chai-related packages and removes unused code from the test suite.
7 lines
176 B
Plaintext
Executable File
7 lines
176 B
Plaintext
Executable File
if grep -rq --include '*.test.ts' 'it.only\|describe.only' './test' './src'; then
|
|
echo 'There is a .only() in the tests. Please remove it.'
|
|
exit 1;
|
|
else
|
|
exit 0;
|
|
fi
|