defunctzombie / zuul

[UNMAINTAINED] multi-framework javascript browser testing
958 stars 87 forks source link

Basic browser list expressions #312

Closed btd closed 7 years ago

btd commented 7 years ago

Hi, there. It is awesome project. It makes testing should.js in browser very simple task.

What i wanted always it is support very basic expressions like .zuul.yml:

browsers:
  - name: chrome
    version: latest-3..latest

or maybe browserlist integration (it will excepts browsers, need to create intersection with what saucelabs have).

Thanks.

josephfrazier commented 7 years ago

I think this particular syntax is already supported, but without the initial latest. From the wiki:


Range of versions with negative start index

browsers:
  - name: firefox
    version: -2..latest

This example would test the latest three stable versions of Firefox (latest - 2, latest - 1, latest).

btd commented 7 years ago

Sorry completly miss reply. Thank you. This solve my issue.