The Wayback Machine - https://web.archive.org/web/20220709203739/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 2,606 public repositories matching this topic...

hoppscotch
Gunni
Gunni commented Oct 13, 2021

Describe the bug
A clear and concise description of what the bug is.

To Reproduce
Steps to reproduce the behavior:

  1. Go to realtime
  2. Paste url wss://ris-live.ripe.net/v1/ws/?client=hoppscotch.io
  3. Observe connect is disabled
  4. Remove parameter, quickly undo it and click connect (also a bug)
  5. Send { "type": "ris_subscribe" } to the remote server
  6. Observe you receive
bug good first issue
cypress
Jym77
Jym77 commented Jun 21, 2022

Current behavior

When using Cypress as a library, there is one file called node_modules/cypress/types/net-stubbing.ts which only contains type definitions.
Together with latest version of API extractor, this creates the error:

Error: <project>/node_modules/cypress/types/net-stubbing.ts:1:1 - (ae-wrong-input-file-type) Incorrect file type; API Extractor expects to analyze compiler out
type: enhancement good first issue type: typings E2E-core
ffknob
ffknob commented Jun 15, 2022

Describe the bug

I'm having some trouble and need some advice on creating a TS class with private/protected readonly members and have it pass my vitest tests.

asset.ts

export enum AssetType {
  STOCK,
  CRYPTO,
}

export abstract class Asset {
  protected readonly _type: AssetType;
  protected readonly _symbol: string;
  protected readonly _name: string;
  protec
bug good first issue
lepinkainen
lepinkainen commented Jun 21, 2020

I have two setups, in one the -parallel option works just fine in vscode - it generates parallel test cases as it should. In the other it doesn't do anything (not reporting errors in custom flags is a problem in the vscode go plugin, which is not the issue here).

Both were installed with go get -u github.com/cweill/gotests/... when in the $HOME directory within 15 minutes of each other.

aSemy
aSemy commented Jul 5, 2022

Which version of Kotest are you using
5.3.2

I want to verify that a JSON object does not contain duplicated fields. However shouldBeValidJson() and shouldEqualJson() do not throw errors.

I would like an additional comparison flag added to shouldBeValidJson() and compareJsonOptions { } for verifying that properties are distinct.

import io.kotest.assertions.json.Comp
Good First Issue assertions
kenden
kenden commented Jun 14, 2018

As the moment it's only possible to install bats from bats-core from source on linux.

We should create packages to install easily on Linux.
It could be:

Flathub is probably the easiest to support most d

Type: Enhancement good first issue Priority: Medium Component: Packaging
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

garden
jamesmeneghello
jamesmeneghello commented May 25, 2022

Bug

Current Behavior

kubeVersion isn't set when rendering Helm modules, which results in unexpected behaviour with some Helm charts. Most Bitnami charts set ingressClassName based on the kubeVersion >1.19, for example, which means creating any Bitnami chart with an ingress doesn't set ingressClassName at all.

Expected behavior

Would expect the Kubernetes provider to

Wikipedia
Wikipedia