Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion docs/en/create-hermione-app.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ npm init hermione-app my-app -- --lang js
- [Safari Commands](https://github.com/gemini-testing/hermione-safari-commands) - To add compatibility for safari mobile
- [Test Repeater](https://github.com/gemini-testing/hermione-test-repeater) - To repeat tests the specified number of times regardless of the result
- [Url Decorator](https://github.com/gemini-testing/url-decorator) - To add/replace url query params
- [Reassert View](https://github.com/gemini-testing/hermione-reassert-view) - To make screenshot comparison by assertView less strict
- [Storybook](https://github.com/gemini-testing/hermione-storybook) - To add ability to write hermione tests on storybook component and speed up their execution
- [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
- [Oauth](https://github.com/gemini-testing/hermione-oauth) - To set authorization header with OAuth token
Expand Down
1 change: 0 additions & 1 deletion docs/ru/create-hermione-app.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ npm init hermione-app my-app -- --lang js
- [Safari Commands](https://github.com/gemini-testing/hermione-safari-commands) - Чтобы поддержать работу для браузера `safari` на мобильных устройствах
- [Test Repeater](https://github.com/gemini-testing/hermione-test-repeater) - Чтобы повторять тесты указанное количество раз вне зависимости от результата
- [Url Decorator](https://github.com/gemini-testing/url-decorator) - Чтобы добавить/заменить параметры запроса в `url` команде
- [Reassert View](https://github.com/gemini-testing/hermione-reassert-view) - Чтобы сделать скриншотное тестирование менее строгим
- [Storybook](https://github.com/gemini-testing/hermione-storybook) - Чтобы писать тесты на `storybook` компонентах и ускорить время их выполнения
- [Html Reporter](https://github.com/gemini-testing/html-reporter) - Чтобы генерировать отчеты для отображения прошедших/упавших тестах, разницы между скриншотами, ошибкок, мета информации
- [Oauth](https://github.com/gemini-testing/hermione-oauth) - Чтобы установить заголовок авторизации с OAuth токеном
Expand Down
13 changes: 1 addition & 12 deletions src/constants/pluginGroups/stabilityGroup.ts
Original file line number Diff line number Diff line change
@@ -1,20 +1,9 @@
import type { PluginGroup } from "../../types/toolOpts";
import {
HERMIONE_REASSERT_VIEW,
HERMIONE_RETRY_COMMAND,
RETRY_LIMITER,
HERMIONE_RETRY_PROGRESSIVE,
HERMIONE_TEST_REPEATER,
} from "../plugins";
import { HERMIONE_RETRY_COMMAND, RETRY_LIMITER, HERMIONE_RETRY_PROGRESSIVE, HERMIONE_TEST_REPEATER } from "../plugins";

const unstableGroup: PluginGroup = {
description: "Increase stability of unstable tests",
plugins: [
{
description: "Make screenshot comparison by assertView less strict",
plugin: HERMIONE_REASSERT_VIEW,
default: false,
},
{
description: "Retry assertView on comparison fail",
plugin: HERMIONE_RETRY_COMMAND,
Expand Down
1 change: 0 additions & 1 deletion src/constants/plugins.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
export const HTML_REPORTER = "html-reporter/hermione";
export const HERMIONE_TEST_REPEATER = "hermione-test-repeater";
export const HERMIONE_RETRY_COMMAND = "hermione-retry-command";
export const HERMIONE_REASSERT_VIEW = "hermione-reassert-view";
export const HERMIONE_SAFARI_COMMANDS = "hermione-safari-commands";
export const HERMIONE_RETRY_PROGRESSIVE = "hermione-retry-progressive";
export const HERMIONE_STORYBOOK = "hermione-storybook/plugin";
Expand Down
18 changes: 0 additions & 18 deletions src/pluginsConfig/hermione-reassert-view.ts

This file was deleted.

2 changes: 0 additions & 2 deletions src/pluginsConfig/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import hermioneTabsCloser from "./hermione-tabs-closer";
import hermioneGlobalHook from "./hermione-global-hook";
import hermioneTestRepeater from "./hermione-test-repeater";
import hermioneRetryCommand from "./hermione-retry-command";
import hermioneReassertView from "./hermione-reassert-view";
import hermioneSafariCommands from "./hermione-safari-commands";
import hermioneHeadlessChrome from "./hermione-headless-chrome";
import hermionePluginsProfiler from "./hermione-plugins-profiler";
Expand All @@ -22,7 +21,6 @@ const pluginsConfig = [
htmlReporter,
hermioneTestRepeater,
hermioneRetryCommand,
hermioneReassertView,
hermionePluginsProfiler,
hermioneTabsCloser,
retryLimiter,
Expand Down