From 5bf1b2be19013771ebefb60ca3381898ee56a1ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C3=A1vid=20T=C3=B3ta?= Date: Tue, 10 Sep 2024 20:23:48 +0300 Subject: [PATCH] Fix nits in smoke tests Merge in ADGUARD-FILTERS/ecsstree from fix/nits-in-smoke-tests to master Squashed commit of the following: commit 7f0206732e071fd9fd6891685a358a7fd82c88e1 Author: scripthunter7 Date: Tue Sep 10 18:27:23 2024 +0200 changelog nit commit 68a3a138c24ad55d555bee2973bb736450bd0beb Author: scripthunter7 Date: Tue Sep 10 18:21:33 2024 +0200 fix nits in smoke tests --- CHANGELOG.md | 2 ++ package.json | 2 +- test/smoke/esm/test.sh | 2 +- test/smoke/typescript/test.sh | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ada16dc..df99056 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,8 @@ The format is based on [Keep a Changelog][keepachangelog], and this project adhe - Browser specific builds. +[1.1.0]: https://github.com/AdguardTeam/ecsstree/compare/v1.0.8...v1.1.0 + ## [1.0.8] - 2022-02-27 ### Added diff --git a/package.json b/package.json index 351ae6e..99dddc5 100644 --- a/package.json +++ b/package.json @@ -75,6 +75,6 @@ "lint": "eslint . --cache && markdownlint .", "test": "jest", "build": "rimraf dist && rollup --config rollup.config.js && node tasks/build-txt.js", - "test:smoke": "(cd test/smoke/esm && pnpm test) && (cd test/smoke/cjs && pnpm test) && (cd test/smoke/typescript && pnpm test)" + "test:smoke": "(cd test/smoke/esm && yarn test) && (cd test/smoke/cjs && yarn test) && (cd test/smoke/typescript && yarn test)" } } diff --git a/test/smoke/esm/test.sh b/test/smoke/esm/test.sh index 4f7ac57..508500f 100755 --- a/test/smoke/esm/test.sh +++ b/test/smoke/esm/test.sh @@ -24,5 +24,5 @@ ecss_tree_node_modules=$nm_path"/@adguard/ecss-tree" mkdir -p $ecss_tree_node_modules tar -xzf $ecss_tree --strip-components=1 -C $ecss_tree_node_modules -pnpm start +yarn start echo "Test successfully built." diff --git a/test/smoke/typescript/test.sh b/test/smoke/typescript/test.sh index 05bf3f2..4080084 100755 --- a/test/smoke/typescript/test.sh +++ b/test/smoke/typescript/test.sh @@ -23,5 +23,5 @@ ecss_tree_node_modules=$nm_path"/@adguard/ecss-tree" mkdir -p $ecss_tree_node_modules tar -xzf $ecss_tree --strip-components=1 -C $ecss_tree_node_modules -pnpm start +yarn start echo "Test successfully built."