Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
crynobone authored Dec 4, 2024
1 parent 3091f2b commit e90e37d
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Testing Framework for Laravel Development
==============

Testbench Core is a framework that has been designed to help you write tests and interacts with your Laravel package.
Testbench Core is a framework designed to help you write tests and interact with your Laravel package.

[![tests](https://github.com/orchestral/testbench-core/workflows/tests/badge.svg?branch=9.x)](https://github.com/orchestral/testbench-core/actions?query=workflow%3Atests+branch%3A9.x)
[![Latest Stable Version](https://poser.pugx.org/orchestra/testbench-core/v/stable)](https://packagist.org/packages/orchestra/testbench-core)
Expand All @@ -22,25 +22,30 @@ Testbench Core is a framework that has been designed to help you write tests and

## Usage

**Testbench Core** is being built to enable [Laravel Framework](https://github.com/laravel/framework) to build and run integration tests for the framework itself. For package developers please use any of the following testbench projects:

### [Testbench](https://github.com/orchestral/testbench)

It loads Laravel apps and enable you to run artisan commands, migrations, factories and basic routing from within your tests.
It loads a Laravel application within your package repository and enables you to run artisan commands, migrations, factories, and basic routing from within your tests.

[![Latest Stable Version](https://poser.pugx.org/orchestra/testbench/v/stable)](https://packagist.org/packages/orchestra/testbench)
[![Total Downloads](https://poser.pugx.org/orchestra/testbench/downloads)](https://packagist.org/packages/orchestra/testbench)

### [Testbench BrowserKit](https://github.com/orchestral/testbench-browser-kit)

It extends **Testbench** and allows you to interact with views using CSS selectors (interacting with form, button, link etc) but without JavaScript being loaded.
It extends **Testbench** and allows you to interact with views using CSS selectors (form, button, link, etc.) without loading JavaScript.

[![Latest Stable Version](https://poser.pugx.org/orchestra/testbench-browser-kit/v/stable)](https://packagist.org/packages/orchestra/testbench-browser-kit)
[![Total Downloads](https://poser.pugx.org/orchestra/testbench-browser-kit/downloads)](https://packagist.org/packages/orchestra/testbench-browser-kit)

### [Testbench Dusk](https://github.com/orchestral/testbench-dusk)

It extends **Testbench** and allows you to interact with views using CSS selectors (interacting with form, button, link etc). By loading the pages using Google Chrome it enable you to interacts with JavaScript powered content.
It extends **Testbench** and allows you to interact with views using CSS selectors (form, button, link, etc). Loading the pages using Google Chrome enables you to interact with JavaScript-powered content.

[![Latest Stable Version](https://poser.pugx.org/orchestra/testbench-dusk/v/stable)](https://packagist.org/packages/orchestra/testbench-dusk)
[![Total Downloads](https://poser.pugx.org/orchestra/testbench-dusk/downloads)](https://packagist.org/packages/orchestra/testbench-dusk)

### [Workbench](https://github.com/orchestral/workbench)

It loads a Laravel application within your package repository and enables you to preview the package directly within the repository.

[![Latest Stable Version](https://poser.pugx.org/orchestra/workbench/v/stable)](https://packagist.org/packages/orchestra/workbench)
[![Total Downloads](https://poser.pugx.org/orchestra/workbench/downloads)](https://packagist.org/packages/orchestra/workbench)

0 comments on commit e90e37d

Please sign in to comment.