]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/pybind/mgr/dashboard/run-frontend-unittests.sh
import 15.2.5
[ceph.git] / ceph / src / pybind / mgr / dashboard / run-frontend-unittests.sh
index c94cd922f545f57b03f9cfbd8d7cb2386550c821..42cb9e1d2498eda06acca27ba0f530e8021cb773 100755 (executable)
@@ -14,19 +14,8 @@ fi
 npm run build -- --prod --progress=false || failed=true
 
 # Unit Tests
-config='src/unit-test-configuration.ts'
-if [ -e $config ]; then
-  mv $config ${config}_old
-fi
-cp ${config}.sample $config
-
 npm run test:ci || failed=true
 
-rm $config
-if [ -e ${config}_old ]; then
-  mv ${config}_old $config
-fi
-
 # Linting
 npm run lint --silent
 if [ $? -gt 0 ]; then