Maskalenkasdoc
- Total activity 21
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 9
-
Created auto import is importing everything on the same line
When I use the auto import feature to paste a code snippet it is currently showing like this: import { Authentication,AuthenticationParams } from "@/domain/usecases"; import { HttpPostClientSpy } f... -
Created how to show parent lines instead tab in tsx file?
in other editors a line to the left is represented in each tag to represent the opening and closing of it but in webstorm it's different how to fix it? -
Created How to open sass mixin with all possible parameters
I wanted to open the mixin size with all parameters already preselected ($width:width, $height:height). It's possible? Currently when I select the mixin it opens like this: @include size() rather ... -
Edited Argument clearCache in jest not work with other commands
Currently I have the following command which clears the cache and starts testing the application: however when I apply the same arguments in webstorm it ends up crashing in the part of clearing th... -
Created How to restart debugger Express when server file regenereted
Currently I have a server.js file that is always regenerated. I would like that whenever it was regenerated the WebStorm debugger would restart it like nodemon does. How would I do that? Or how wou... -
Created How to execute clear_jest in project directory?
Currently when I configure the command to clear the cache it runs in my root folder (image below).but I would like it to run only in the project folder (image below) . How would I make him run the... -
Created How to apply expression in first argument of live templates variables
I have the variable PROPERTY_NAME. How do I apply a decapitalize to this variable? decapitalize(PROPERTY_NAME) not work -
Created how to run only tests edited before commit?
AnsweredCurrently I have more than 100 tests running every time I commit. I would like to know how I can run only the tests that have been changed. -
Created See Scss variable value from another file without open the file with variable
I have a variables scss file where I define a colors so: $text-primary-color: #004851;$text-secondary-color: #9b9b9b; I then have other files where I refer to these variables: h1 { color: main....