Skip to content
#

test-runner

Here are 288 public repositories matching this topic...

cypress
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

xiki808
xiki808 commented Jun 2, 2021

Can we run the dev server over https?

I created locally signed ssl keys using mkcert, by following this guide: https://web.dev/how-to-use-local-https/

After setting up the cert and key files to my root directory, I added this to my dev server config:

...
  sslKey: 'localhost-key.pem',
  sslCert: 'localhost.pem',
};

I still cannot access my local ( localhost:8000 ) using

documentation good first issue
ward
darrenburns
darrenburns commented Jun 10, 2021

We need a page in the docs that tell users that to mock they should use from unittest import mock.

We should note that the mock.patch decorators don't currently work, and that we need to use the context managers instead.

good first issue small docs
mity
mity commented Jan 11, 2020

Make the output, especially as generated by the macros TEST_CHECK(), TEST_MSG() and TEST_DUMP(), automatically adapt to the current terminal size, so that it looks good in a reasonably small terminal window but can use effectively more space if the terminal window is big.

This should involve:

  1. Explore what API is available for the purpose on the platform of your choice.
  2. A pre-pro
enhancement good first issue

Improve this page

Add a description, image, and links to the test-runner 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 test-runner topic, visit your repo's landing page and select "manage topics."

Learn more