Javascript – Make package.json scripts work on both macOS and Windows
I am using Jasmine test suite to run tests in my codebase. It works great on my Mac. the command is open SpecRunner.html Here's the full scripts object: "scripts": { "start": "npm install", "test:local": "open SpecRunner.html", "test:remote": "karma start" },…