Make stryker config file mandatory
See original GitHub issueRunning stryker with command line options won’t read a stryker.conf.js file. This results in unexpacted behavior, for example:
$ stryker run
[2017-09-22 15:30:17.180] [INFO] ConfigReader - Using stryker.conf.js in the current working directory.
...
[2017-09-22 15:30:29.083] [INFO] Stryker - Done in 11 seconds.
$ stryker run --logLevel debug
[2017-09-22 15:30:35.483] [INFO] ConfigReader - No config file specified. Running with command line arguments
I think it would be more useful to always require a stryker.conf.js file to be specified.
Issue Analytics
- State:
- Created 6 years ago
- Comments:5 (4 by maintainers)
Top Results From Across the Web
Make stryker config file mandatory · Issue #390 - GitHub
Running stryker with command line options won't read a stryker.conf.js file. This results in unexpacted behavior, for example: $ stryker run ...
Read more >Config file | Stryker Mutator
Config file. Although a config file is not mandatory, it is recommended. You can define your Stryker configuration in either a .js or...
Read more >Correct configuration for Stryker on Angular v11 Library project?
With help from nicojs, I was able to get basic Stryker functionality working on my library project. As it turns out I was...
Read more >Stryker - npm.io
As you can see, the config file is not a simple JSON file. It should be a node module. You might recognize this...
Read more >stryker - npm
Of course, you can still make changes to it, before you run Stryker for the first time. The following is an example stryker.conf.js...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Well, it might have if @Be-ngt-oH didn’t step in and did his suggestion. So your example should still work
To make sure I understand correctly, is this request removing the ability to directly define a grunt task in Gruntfile.js that has all the config settings in it?
example…