phpunit command doesn't work for laravel 4 on windows 7

前端 未结 11 1839
南笙
南笙 2020-12-15 06:06

I\'ve recently installed laravel and have written some tests in /tests directory but when I use phpunit at cmd in the same folder that phpunit.xml

11条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-15 06:15

    With Laravel phpunit is set up right out of the box. The easiest way to run it on Windows is to add an entry to scripts in your package.json file...

    "scripts": {
        ...
        "tests": "php vendor/phpunit/phpunit/phpunit"
    },
    

    Now you simply run unit tests with

    npm run tests
    

提交回复
热议问题