Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kvz committed Apr 5, 2024
1 parent adccf01 commit 1d7f971
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 1d7f971

Please sign in to comment.