• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

bem / bem-walk / 75 / 2
100%
master: 100%

Build:
Build:
LAST BUILD BRANCH: v1.0.0-alpha1
DEFAULT BRANCH: master
Ran 27 Mar 2015 08:16PM UTC
Files 4
Run time 0s
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

27 Mar 2015 08:14PM UTC coverage: 100.0%. Remained the same
75.2

push

travis-ci

andrewblond
Refactored `walk` arguments:

**1. The second argument now expects `config` instead of `options`.**

Options by default now need specify in `config.defaults` instead of `options`.

*Before:*

```js
walk(['blocks'], { sheme: 'flat' });
```

*After:*

```js
var config = {
    defaults: { sheme: 'flat' }
};

walk(['blocks'], config);
```

**2. Info about levels (scheme and naming) now need specify in `config.levels` instead of `levels` arguments.**

The `levels` argument as `Array` no longer supported.

*Before:*

```js
walk([{ path: 'blocks', sheme: 'flat' }]);
```

*After:*

```js
var config = {
    levels: {
        blocks: { sheme: 'flat' }
    }
};

walk(['blocks'], config);
```

75 of 75 relevant lines covered (100.0%)

28.07 hits per line

Source Files on job 75.2
  • Tree
  • List 0
  • Changed 0
  • Source Changed 0
  • Coverage Changed 0
Coverage ∆ File Lines Relevant Covered Missed Hits/Line
  • Back to Build 75
  • Travis Job 75.2
  • b0f8293e on github
  • Prev Job for on issue-15 (#73.2)
  • Next Job for on issue-15 (#81.2)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc