我尝试使用Travis在Dartium上运行angulardart测试但是它失败并出现此错误:
Failed to load "test/data_services/app/company/Coordinates_test.dart": Failed to run Dartium: Dartium failed with exit code 1..
这是我的构建脚本:
matrix:
include:
- language: dart
sudo: false
dart: stable
dist: trusty
before_install:
- cd $TRAVIS_BUILD_DIR/webapp-angular
install_dartium: true
script:
- pub get && pub run test --platform dartium test/
- language: java
jdk: oraclejdk8
sudo: false
script:
- mvn clean verify
我不确定这是我的问题还是特拉维斯CI中的飞镖命令。