Skip to content
#

tdd

Here are 4,710 public repositories matching this topic...

praveenngp
praveenngp commented Sep 9, 2020

Are you creating an issue in the correct repository?

  • When in doubt, create an issue here.
  • If you have an issue with the Jasmine docs, file an issue in the docs repo
    here: https://github.com/jasmine/jasmine.github.io
  • This repository is for the core Jasmine framework
  • If you are using a test runner that wraps Jasmine, consider filing an issue with that library if appropriate:

laoshaw
laoshaw commented Oct 30, 2021

Describe the bug
when I turn on CATCH_CONFIG_DISABLE, all CAPTURE(i,j) , i.e. more than one arg will err.

Expected behavior
No such error

Reproduction steps
Build below code with -DCATCH_CONFIG_DISABLE

#include "catch.hpp"

TEST_CASE("generators") {
    auto i = GENERATE(as<std::string>(), "a", "b", "c");
    SECTION("one") {
        auto j = GENERATE(range(8, 11
sinon
fatso83
fatso83 commented May 25, 2021

Is your feature request related to a problem? Please describe.
Today we silently ignore stubbing issues, such as trying to use sinon.stub(obj, 'prop'), when obj.prop is a synthetic getter. From a user perspective, it is probably more user friendly to be explicitly told immediately that this Object.descriptor is non-configurable (perhaps even with a link to a Sinon doc page!) and cannot be

mockk
fluentassertions
ashwinvidiyala
ashwinvidiyala commented Feb 11, 2020

For the longest time I was able to access the pry console while running tests using :TestNearest, but it hasn't been working of late. I am able to run tests using :TestNearest and the other vim-test commands. My issue is that if I throw in a binding.pry in the test, I don't see the pry console open up anymore in the test window. That used to work before, and I can't figure out why. I'm

Improve this page

Add a description, image, and links to the tdd topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the tdd topic, visit your repo's landing page and select "manage topics."

Learn more