Skip to content

Commit ea5bb49

Browse files
Merge pull request #25 from gemini-testing/HERMIONE-1399.rm_plugin
fix: remove hermione-image-minifier
2 parents 886d913 + 84fc89f commit ea5bb49

6 files changed

Lines changed: 1 addition & 31 deletions

File tree

docs/en/create-hermione-app.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ npm init hermione-app my-app -- --lang js
5151
- [Safari Commands](https://github.com/gemini-testing/hermione-safari-commands) - To add compatibility for safari mobile
5252
- [Test Repeater](https://github.com/gemini-testing/hermione-test-repeater) - To repeat tests the specified number of times regardless of the result
5353
- [Url Decorator](https://github.com/gemini-testing/url-decorator) - To add/replace url query params
54-
- [Image Minifier](https://github.com/gemini-testing/hermione-image-minifier) - To enable compression for reference images
5554
- [Reassert View](https://github.com/gemini-testing/hermione-reassert-view) - To make screenshot comparison by assertView less strict
5655
- [Storybook](https://github.com/gemini-testing/hermione-storybook) - To add ability to write hermione tests on storybook component and speed up their execution
5756
- [Html Reporter](https://github.com/gemini-testing/html-reporter) - To generate html-reports for showing passed/failed tests, screenshot diffs, error messages, stacktraces, meta-info and so on

docs/ru/create-hermione-app.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ npm init hermione-app my-app -- --lang js
4747
- [Safari Commands](https://github.com/gemini-testing/hermione-safari-commands) - Чтобы поддержать работу для браузера `safari` на мобильных устройствах
4848
- [Test Repeater](https://github.com/gemini-testing/hermione-test-repeater) - Чтобы повторять тесты указанное количество раз вне зависимости от результата
4949
- [Url Decorator](https://github.com/gemini-testing/url-decorator) - Чтобы добавить/заменить параметры запроса в `url` команде
50-
- [Image Minifier](https://github.com/gemini-testing/hermione-image-minifier) - Чтобы сжимать эталонные изображения в скриншотном тестировании
5150
- [Reassert View](https://github.com/gemini-testing/hermione-reassert-view) - Чтобы сделать скриншотное тестирование менее строгим
5251
- [Storybook](https://github.com/gemini-testing/hermione-storybook) - Чтобы писать тесты на `storybook` компонентах и ускорить время их выполнения
5352
- [Html Reporter](https://github.com/gemini-testing/html-reporter) - Чтобы генерировать отчеты для отображения прошедших/упавших тестах, разницы между скриншотами, ошибкок, мета информации

src/constants/pluginGroups/reportsGroup.ts

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
import type { PluginGroup } from "../../types/toolOpts";
2-
import {
3-
HERMIONE_IMAGE_MINIFIER,
4-
HERMIONE_PLUGINS_PROFILER,
5-
HERMIONE_PROFILER,
6-
HERMIONE_STORYBOOK,
7-
HTML_REPORTER,
8-
} from "../plugins";
2+
import { HERMIONE_PLUGINS_PROFILER, HERMIONE_PROFILER, HERMIONE_STORYBOOK, HTML_REPORTER } from "../plugins";
93

104
const reportsGroup: PluginGroup = {
115
description: "Generate reports about tests' results, plugins, their performance",
@@ -16,11 +10,6 @@ const reportsGroup: PluginGroup = {
1610
plugin: HTML_REPORTER,
1711
default: true,
1812
},
19-
{
20-
description: "Enable compression for reference images",
21-
plugin: HERMIONE_IMAGE_MINIFIER,
22-
default: false,
23-
},
2413
{
2514
description: "Generate report about executed commands and their performance",
2615
plugin: HERMIONE_PROFILER,

src/constants/plugins.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ export const HERMIONE_HEADLESS_CHROME = "hermione-headless-chrome";
1010
export const URL_DECORATOR = "url-decorator";
1111
export const HERMIONE_TEST_FILTER = "hermione-test-filter";
1212
export const HERMIONE_OAUTH = "hermione-oauth";
13-
export const HERMIONE_IMAGE_MINIFIER = "hermione-image-minifier";
1413
export const HERMIONE_PLUGINS_PROFILER = "hermione-plugins-profiler";
1514
export const HERMIONE_TABS_CLOSER = "hermione-tabs-closer";
1615
export const HERMIONE_GLOBAL_HOOK = "hermione-global-hook";

src/pluginsConfig/hermione-image-minifier.ts

Lines changed: 0 additions & 14 deletions
This file was deleted.

src/pluginsConfig/index.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ import hermioneGlobalHook from "./hermione-global-hook";
1313
import hermioneTestRepeater from "./hermione-test-repeater";
1414
import hermioneRetryCommand from "./hermione-retry-command";
1515
import hermioneReassertView from "./hermione-reassert-view";
16-
import hermioneImageMinifier from "./hermione-image-minifier";
1716
import hermioneSafariCommands from "./hermione-safari-commands";
1817
import hermioneHeadlessChrome from "./hermione-headless-chrome";
1918
import hermionePluginsProfiler from "./hermione-plugins-profiler";
@@ -24,7 +23,6 @@ const pluginsConfig = [
2423
hermioneTestRepeater,
2524
hermioneRetryCommand,
2625
hermioneReassertView,
27-
hermioneImageMinifier,
2826
hermionePluginsProfiler,
2927
hermioneTabsCloser,
3028
retryLimiter,

0 commit comments

Comments
 (0)