酶找不到子成分

时间:2019-08-22 14:55:54

标签: reactjs enzyme

在我的测试代码中

php artisan oneoffs:updateSomething --param1=1 --param2=2

当通话呈现Child时,返回false。

我在做什么错了?

1 个答案:

答案 0 :(得分:0)

您不需要导入 image: maven:3-jdk-8 services: - docker:dind stages: - test - build - deploy maven-test: stage: test script: - echo "Test stage" - mvn clean validate compile test -B maven-build: stage: build script: - echo "Build stage" - mvn install -B -DskipTests artifacts: paths: - ./target/*.jar maven-deploy: stage: deploy script: - echo "Deploy stage" - scp -v -o StrictHostKeyChecking=no -I "mykey.pem" ./target/*.jar ubuntu@xxxxxxx.com:*.jar when: manual ,可以使用:

Child