The Wayback Machine - https://web.archive.org/web/20200820015026/https://github.com/topics/testing-tools
Skip to content
#

testing-tools

Testing is the practice of systematically testing software to make sure it works. Testing can be iterative, and happen multiple times.

Eliminate bugs and ship with more confidence by adding these tools to your workflow.

Here are 1,839 public repositories matching this topic...

etagwerker
etagwerker commented Mar 11, 2020

Hi there,

I think this can be a good issue for a first-time contributor. It would be great if we can increase documentation for the DatabaseCleaner::Configuration API: https://github.com/DatabaseCleaner/database_cleaner/blob/master/lib/database_cleaner/configuration.rb#L56-L72

Even though methods are pretty self-explanatory, I think it is a good idea to maintain a complete documentation for

LeoColman
LeoColman commented Aug 18, 2020

We currently have Gen.forAll { it == true }. If we want to invert it, it's ok to write Gen.forAll { !(it == true) } .

It would be syntactically pleasant to write Gen.forNone instead, like:

test("Random string shouldn't be a valid email") {
     Arb.string().forNone { it.isEmail() }` 
}

vs

test("Random string shouldn't be a valid email") {
    Arb.string().forAll
BugDiver
BugDiver commented Sep 11, 2019

Expected behavior

There has to be a way to omit the descriptions in taiko APIs

Actual behavior

Currently, the user can not omit the descriptions given from the APIs

Use Case

In REPL mode all the taiko APIs prints a description about the action they performed. The plugins can also contribute to this feature by using the description event emitter which is passed to the plugin

garden
Wikipedia
Wikipedia
You can’t perform that action at this time.