mirror of
https://github.com/zen-browser/desktop.git
synced 2025-07-08 00:10:00 +02:00
15 lines
298 B
Bash
15 lines
298 B
Bash
#!/bin/bash
|
|
|
|
# make sure we are on root
|
|
if [ ! -f "package.json" ]; then
|
|
echo "Please run this script from the root of the project"
|
|
exit 1
|
|
fi
|
|
|
|
rm -rf engine/browser/base/zen-components/tests/
|
|
|
|
npm run import
|
|
npm run build:ui
|
|
cd ./engine
|
|
./mach mochitest browser/base/zen-components/tests
|
|
cd ..
|