Yiwei Tian
Yiwei Tian
### Question description I am trying to show line numbers in code blocks, when I search in the preferences, it does show something related, but I couldn't find it on...
I have 2 different nodejs backends which both use csurf to issue csrf tokens. But only one is working properly. The codes are very identical, both `api/auth` and `api/reviews` are...
I got this error when I **run django unittest**, I have tried all the answers I could find, seems not working. Here are my **settings:** ```#settings.py DEBUG_TOOLBAR_PATCH_SETTINGS = False if...
**Is your feature request related to a problem? Please describe.** When I try to run a code that needs to collect user input, the code will hang on and stop...
添加替換字符串思路
For example, I have a custom validator that consists of an array of validation: ```ts const customValidator = (arg) => { const res = someLogic(arg) return res } const validateResult...
What I am trying to do is to display the test GUI on my host machine, following the post [here](https://www.cypress.io/blog/2019/05/02/run-cypress-with-a-single-docker-command/) Here are docker files. ```yml version: "3.8" networks: default: services:...
Folder structure as below: ``` . ├── README.md ├── docker-compose.yaml ├── e2e ├── backend ├── client └── template-backend.yaml 3 directories, 5 files ``` ```dockerfile FROM cypress/base:14 WORKDIR /app # dependencies...
### Bug report info ```plain text act version: 0.2.32 GOOS: darwin GOARCH: arm64 NumCPU: 8 Docker host: DOCKER_HOST environment variable is unset/empty. Sockets found: /var/run/docker.sock Config files: /Users//.actrc: -P ubuntu-latest=catthehacker/ubuntu:act-latest...
As per the [native AggregateError examples](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AggregateError#examples): ``` try { throw new AggregateError([new Error("some error")], "Hello"); } catch (e) { console.log(e instanceof AggregateError); // true console.log(e.message); // "Hello" console.log(e.name); // "AggregateError"...