Skip to content

Commit f004f75

Browse files
Merge pull request #31 from gemini-testing/kr/fix/remove_reassert_view
fix: remove hermione-reassert-view
2 parents bbd8d6a + b2e0c42 commit f004f75

File tree

6 files changed

+1
-35
lines changed

6 files changed

+1
-35
lines changed

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-
- [Reassert View](https://github.com/gemini-testing/hermione-reassert-view) - To make screenshot comparison by assertView less strict
5554
- [Storybook](https://github.com/gemini-testing/hermione-storybook) - To add ability to write hermione tests on storybook component and speed up their execution
5655
- [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
5756
- [Oauth](https://github.com/gemini-testing/hermione-oauth) - To set authorization header with OAuth token

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-
- [Reassert View](https://github.com/gemini-testing/hermione-reassert-view) - Чтобы сделать скриншотное тестирование менее строгим
5150
- [Storybook](https://github.com/gemini-testing/hermione-storybook) - Чтобы писать тесты на `storybook` компонентах и ускорить время их выполнения
5251
- [Html Reporter](https://github.com/gemini-testing/html-reporter) - Чтобы генерировать отчеты для отображения прошедших/упавших тестах, разницы между скриншотами, ошибкок, мета информации
5352
- [Oauth](https://github.com/gemini-testing/hermione-oauth) - Чтобы установить заголовок авторизации с OAuth токеном

src/constants/pluginGroups/stabilityGroup.ts

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,9 @@
11
import type { PluginGroup } from "../../types/toolOpts";
2-
import {
3-
HERMIONE_REASSERT_VIEW,
4-
HERMIONE_RETRY_COMMAND,
5-
RETRY_LIMITER,
6-
HERMIONE_RETRY_PROGRESSIVE,
7-
HERMIONE_TEST_REPEATER,
8-
} from "../plugins";
2+
import { HERMIONE_RETRY_COMMAND, RETRY_LIMITER, HERMIONE_RETRY_PROGRESSIVE, HERMIONE_TEST_REPEATER } from "../plugins";
93

104
const unstableGroup: PluginGroup = {
115
description: "Increase stability of unstable tests",
126
plugins: [
13-
{
14-
description: "Make screenshot comparison by assertView less strict",
15-
plugin: HERMIONE_REASSERT_VIEW,
16-
default: false,
17-
},
187
{
198
description: "Retry assertView on comparison fail",
209
plugin: HERMIONE_RETRY_COMMAND,

src/constants/plugins.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
export const HTML_REPORTER = "html-reporter/hermione";
22
export const HERMIONE_TEST_REPEATER = "hermione-test-repeater";
33
export const HERMIONE_RETRY_COMMAND = "hermione-retry-command";
4-
export const HERMIONE_REASSERT_VIEW = "hermione-reassert-view";
54
export const HERMIONE_SAFARI_COMMANDS = "hermione-safari-commands";
65
export const HERMIONE_RETRY_PROGRESSIVE = "hermione-retry-progressive";
76
export const HERMIONE_STORYBOOK = "hermione-storybook";

src/pluginsConfig/hermione-reassert-view.ts

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

src/pluginsConfig/index.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ import hermioneTabsCloser from "./hermione-tabs-closer";
1212
import hermioneGlobalHook from "./hermione-global-hook";
1313
import hermioneTestRepeater from "./hermione-test-repeater";
1414
import hermioneRetryCommand from "./hermione-retry-command";
15-
import hermioneReassertView from "./hermione-reassert-view";
1615
import hermioneSafariCommands from "./hermione-safari-commands";
1716
import hermioneHeadlessChrome from "./hermione-headless-chrome";
1817
import hermionePluginsProfiler from "./hermione-plugins-profiler";
@@ -22,7 +21,6 @@ const pluginsConfig = [
2221
htmlReporter,
2322
hermioneTestRepeater,
2423
hermioneRetryCommand,
25-
hermioneReassertView,
2624
hermionePluginsProfiler,
2725
hermioneTabsCloser,
2826
retryLimiter,

0 commit comments

Comments
 (0)