4

我有一个项目,其中包含 TravisCI 通过 SauceLabs 执行的量角器测试。

其中一项测试涉及“上传”文件:

it('should not allow "image/jpeg" file', function () {
  pathToFile = path.resolve(__dirname, 'file.jpg');
  elem.sendKeys(pathToFile);
  expect(elem.getAttribute('class')).toMatch('ng-invalid');
});

这在本地可以正常工作,但是 Travis 会产生错误:

. . . ./file.jpg' 文件系统上不存在

我认为这是因为file.png在 SauceLabs 上不存在。

我的问题是,我怎样才能让它工作?

有问题的指令是这个:https ://github.com/GrumpyWizards/ngValidation/blob/master/wizValidation/src/file/file.dir.js

4

1 回答 1

0

这是一个 UI 测试,根本不需要解析路径名......

it('should not allow "image/jpeg" file', function () {
  pathToFile = "path/is/not/important/file.jpg";
  elem.sendKeys(pathToFile);
  expect(elem.getAttribute('class')).toMatch('ng-invalid');
});

迈克尔

于 2014-05-20T11:08:27.587 回答