Skip to content

Commit cdadad4

Browse files
authored
chore(deps): updated dev dependency and test infrastructure (#747)
1 parent 46703cf commit cdadad4

25 files changed

+16
-15
lines changed

package-lock.json

Lines changed: 11 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@
227227
"@diplodoc/mermaid-extension": "1.2.1",
228228
"@diplodoc/quote-link-extension": "0.1.2",
229229
"@diplodoc/tabs-extension": "^3.5.1",
230-
"@diplodoc/transform": "^4.43.0",
230+
"@diplodoc/transform": "^4.57.2",
231231
"@gravity-ui/eslint-config": "3.3.0",
232232
"@gravity-ui/gulp-utils": "1.0.3",
233233
"@gravity-ui/prettier-config": "1.1.0",

scripts/playwright-docker.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ run_command() {
2121
/bin/bash -c "$*"
2222
}
2323

24-
if command_exists docker; then
25-
CONTAINER_TOOL="docker"
26-
elif command_exists podman; then
24+
if command_exists podman; then
2725
CONTAINER_TOOL="podman"
26+
elif command_exists docker; then
27+
CONTAINER_TOOL="docker"
2828
else
29-
echo "Neither Docker nor Podman is installed on the system."
29+
echo "Neither Podman nor Docker is installed on the system."
3030
exit 1
3131
fi
3232

0 commit comments

Comments
 (0)