Skip to content

Commit

Permalink
Make logo unclickable for package READMEs
Browse files Browse the repository at this point in the history
  • Loading branch information
delatrie committed Dec 21, 2023
1 parent bcc1e1d commit 3573346
Show file tree
Hide file tree
Showing 10 changed files with 55 additions and 15 deletions.
8 changes: 6 additions & 2 deletions packages/allure-codeceptjs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

> Allure framework integration for CodeceptJS
<img src="https://allurereport.org/public/img/allure-report.svg" height="85px" alt="Allure Report logo" align="right" />
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://allurereport.org/public/img/allure-report.svg">
<source media="(prefers-color-scheme: light)" srcset="https://allurereport.org/public/img/allure-report.svg">
<img src="https://allurereport.org/public/img/allure-report.svg" height="85px" alt="Allure Report logo" align="right" />
</picture>

- Learn more about Allure Report at https://allurereport.org
- 📚 [Documentation](https://allurereport.org/docs/) – discover official documentation for Allure Report
Expand All @@ -19,7 +23,7 @@ npm i -D allure-codeceptjs
```

## Usage
Add the allure plugin inside you plugins section of your CodeceptJS config file.
Add the allure plugin inside you plugins section of your CodeceptJS config file.
For instance the config file is `codecept.config.(js|ts)` then:
```
plugins: {
Expand Down
8 changes: 6 additions & 2 deletions packages/allure-cucumberjs/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# allure-cucumberjs

> Allure integration for `cucumber-js` compatible with `@cucumber/cucumber@^8.x.x` and Allure 2+.
<img src="https://allurereport.org/public/img/allure-report.svg" height="85px" alt="Allure Report logo" align="right" />
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://allurereport.org/public/img/allure-report.svg">
<source media="(prefers-color-scheme: light)" srcset="https://allurereport.org/public/img/allure-report.svg">
<img src="https://allurereport.org/public/img/allure-report.svg" height="85px" alt="Allure Report logo" align="right" />
</picture>

- Learn more about Allure Report at https://allurereport.org
- 📚 [Documentation](https://allurereport.org/docs/) – discover official documentation for Allure Report
Expand Down
12 changes: 8 additions & 4 deletions packages/allure-decorators/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

> Testdeck decorators integration for Allure framework
<img src="https://allurereport.org/public/img/allure-report.svg" height="85px" alt="Allure Report logo" align="right" />
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://allurereport.org/public/img/allure-report.svg">
<source media="(prefers-color-scheme: light)" srcset="https://allurereport.org/public/img/allure-report.svg">
<img src="https://allurereport.org/public/img/allure-report.svg" height="85px" alt="Allure Report logo" align="right" />
</picture>

- Learn more about Allure Report at https://allurereport.org
- 📚 [Documentation](https://allurereport.org/docs/) – discover official documentation for Allure Report
Expand Down Expand Up @@ -129,14 +133,14 @@ You should pay attention to the following line:
decorate<MochaAllure>(allure)
```

To be able to use decorators, you have to call `decorate` function explicitly and set your reporter's instance in `before` hook. This was done intentionally to allow clients decide which reporter they want to use with decorators module.
To be able to use decorators, you have to call `decorate` function explicitly and set your reporter's instance in `before` hook. This was done intentionally to allow clients decide which reporter they want to use with decorators module.

Note that `data` is a [testdeck](https://github.com/testdeck/testdeck) specific extension which allows injecting parameters into Allure scope.
At the moment, **testdeck** supports only Mocha, Jest and Jasmine frameworks.
If you want to add the other integration, feel free to contact Allure team to discuss the potential design options.
If you want to add the other integration, feel free to contact Allure team to discuss the potential design options.


#### ToDo

- [ ] Update [mocha-allure2-example](https://github.com/sskorol/mocha-allure2-example) with new `allure-decorators` dependency.
- [ ] Update [mocha-allure2-example](https://github.com/sskorol/mocha-allure2-example) with new `allure-decorators` dependency.
- [ ] Explore potential `data` decorator extension for the other frameworks.
6 changes: 5 additions & 1 deletion packages/allure-hermione/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

> Allure integration for `hermione@^5.x.x` and above
<img src="https://allurereport.org/public/img/allure-report.svg" height="85px" alt="Allure Report logo" align="right" />
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://allurereport.org/public/img/allure-report.svg">
<source media="(prefers-color-scheme: light)" srcset="https://allurereport.org/public/img/allure-report.svg">
<img src="https://allurereport.org/public/img/allure-report.svg" height="85px" alt="Allure Report logo" align="right" />
</picture>

- Learn more about Allure Report at https://allurereport.org
- 📚 [Documentation](https://allurereport.org/docs/) – discover official documentation for Allure Report
Expand Down
6 changes: 5 additions & 1 deletion packages/allure-jasmine/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

> Allure integration Jasmine framework
<img src="https://allurereport.org/public/img/allure-report.svg" height="85px" alt="Allure Report logo" align="right" />
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://allurereport.org/public/img/allure-report.svg">
<source media="(prefers-color-scheme: light)" srcset="https://allurereport.org/public/img/allure-report.svg">
<img src="https://allurereport.org/public/img/allure-report.svg" height="85px" alt="Allure Report logo" align="right" />
</picture>

- Learn more about Allure Report at https://allurereport.org
- 📚 [Documentation](https://allurereport.org/docs/) – discover official documentation for Allure Report
Expand Down
6 changes: 5 additions & 1 deletion packages/allure-jest/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

> Allure framework integration for Jest
<img src="https://allurereport.org/public/img/allure-report.svg" height="85px" alt="Allure Report logo" align="right" />
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://allurereport.org/public/img/allure-report.svg">
<source media="(prefers-color-scheme: light)" srcset="https://allurereport.org/public/img/allure-report.svg">
<img src="https://allurereport.org/public/img/allure-report.svg" height="85px" alt="Allure Report logo" align="right" />
</picture>

- Learn more about Allure Report at https://allurereport.org
- 📚 [Documentation](https://allurereport.org/docs/) – discover official documentation for Allure Report
Expand Down
6 changes: 5 additions & 1 deletion packages/allure-js-commons/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

> Common utilities for Allure framework JavaScript integrations
<img src="https://allurereport.org/public/img/allure-report.svg" height="85px" alt="Allure Report logo" align="right" />
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://allurereport.org/public/img/allure-report.svg">
<source media="(prefers-color-scheme: light)" srcset="https://allurereport.org/public/img/allure-report.svg">
<img src="https://allurereport.org/public/img/allure-report.svg" height="85px" alt="Allure Report logo" align="right" />
</picture>

- Learn more about Allure Report at https://allurereport.org
- 📚 [Documentation](https://allurereport.org/docs/) – discover official documentation for Allure Report
Expand Down
6 changes: 5 additions & 1 deletion packages/allure-mocha/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

> Allure framewok integration for Mocha framework
<img src="https://allurereport.org/public/img/allure-report.svg" height="85px" alt="Allure Report logo" align="right" />
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://allurereport.org/public/img/allure-report.svg">
<source media="(prefers-color-scheme: light)" srcset="https://allurereport.org/public/img/allure-report.svg">
<img src="https://allurereport.org/public/img/allure-report.svg" height="85px" alt="Allure Report logo" align="right" />
</picture>

- Learn more about Allure Report at https://allurereport.org
- 📚 [Documentation](https://allurereport.org/docs/) – discover official documentation for Allure Report
Expand Down
6 changes: 5 additions & 1 deletion packages/allure-playwright/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

> Allure framework integration for [Playwright Test](https://playwright.dev) framework
<img src="https://allurereport.org/public/img/allure-report.svg" height="85px" alt="Allure Report logo" align="right" />
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://allurereport.org/public/img/allure-report.svg">
<source media="(prefers-color-scheme: light)" srcset="https://allurereport.org/public/img/allure-report.svg">
<img src="https://allurereport.org/public/img/allure-report.svg" height="85px" alt="Allure Report logo" align="right" />
</picture>

- Learn more about Allure Report at https://allurereport.org
- 📚 [Documentation](https://allurereport.org/docs/) – discover official documentation for Allure Report
Expand Down
6 changes: 5 additions & 1 deletion packages/newman-reporter-allure/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

> A newman reporter for generating nice and clean report using Allure framework
<img src="https://allurereport.org/public/img/allure-report.svg" height="85px" alt="Allure Report logo" align="right" />
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://allurereport.org/public/img/allure-report.svg">
<source media="(prefers-color-scheme: light)" srcset="https://allurereport.org/public/img/allure-report.svg">
<img src="https://allurereport.org/public/img/allure-report.svg" height="85px" alt="Allure Report logo" align="right" />
</picture>

- Learn more about Allure Report at https://allurereport.org
- 📚 [Documentation](https://allurereport.org/docs/) – discover official documentation for Allure Report
Expand Down

0 comments on commit 3573346

Please sign in to comment.