diff --git a/CHANGELOG.md b/CHANGELOG.md index 68a4ad9c66..47352db99d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,7 +13,7 @@ the hundreds of contributions across the many languages that Locutus is assimila Ideas that will be planned and find their way into a release at one point - [ ] Address the 25 remaining test failures that are currently skipped (find out which ones via - `npm run test:generated:noskip`) + `yarn test:languages:noskip`) - [ ] Compare example test cases for PHP against `php -r` to make sure they are correctly mimicking the most recent stable behavior - [ ] Have _one_ way of checking pure JS arrays vs PHP arrays (vs: diff --git a/package.json b/package.json index 479a9d56fa..999cb531b9 100644 --- a/package.json +++ b/package.json @@ -42,11 +42,11 @@ "lint:js": "eslint --ext .js,.jsx,.ts,.tsx .", "lint": "npm-run-all --parallel 'lint:**'", "playground:start": "cd test/browser && babel-node server.js", - "test:generated:noskip": "yarn build:tests:noskip && cross-env DEBUG='locutus:*' mocha --require babel-register --reporter spec 'src/**/*.mocha.js' 'test/**/test-*.js'", + "test:languages:noskip": "yarn build:tests:noskip && cross-env DEBUG='locutus:*' mocha --require babel-register --reporter spec 'src/**/*.mocha.js' 'test/**/test-*.js'", "test:languages": "yarn build:tests && cross-env DEBUG='locutus:*' mocha --require babel-register --reporter spec 'src/**/*.mocha.js' 'test/**/test-*.js'", "test:module": "babel-node test/module/module.js", "test:util": "mocha --require babel-register --reporter spec test/util/", - "test": "npm-run-all test:generated test:util test:module", + "test": "npm-run-all test:languages test:util test:module", "website:install": "cd website && yarn", "website:deploy": "cd website && yarn deploy", "website:start": "cd website && yarn server",