-
Notifications
You must be signed in to change notification settings - Fork 71
/
_config.yml
60 lines (54 loc) · 1.23 KB
/
_config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
title: Chai
description: >
Chai is a BDD / TDD assertion library for [node](http://nodejs.org) and the
browser that can be delightfully paired with any javascript testing framework.
baseurl: ""
safe: true
markdown: kramdown
kramdown:
input: GFM
syntax_highlighter: rouge
syntax_highlighter_opts:
default_lang: js
exclude:
- node_modules
- package.json
- Gemfile
- Gemfile.lock
- Makefile
- README.md
- vendor
googleanalytics: "UA-26183904-6"
mixpanel: "d5e84615dbd02dbc359b0f76d0ed7cf5"
tweeturl: "http://chaijs.com"
tweetvia: "jakeluer"
tweetrelated: "jakeluer"
sass:
style: compressed
defaults:
-
scope:
path: ""
values:
layout: default
-
scope:
path: api
values:
layout: api
bodyClass: api
collections:
guides:
output: true
permalink: /guide/:path/
featuredplugin:
name: chai-webdriver
url: /plugins/chai-webdriver
blurb: |
Create expressive integration tests with chai and
[selenium-webdriver](https://npmjs.org/package/selenium-webdriver).
example: |
chai.use(chaiWebdriver(driver));
driver.get('http://chaijs.com/');
expect('nav h1').dom.to.contain.text('Chai');
expect('#node .button').dom.to.have.style('float', 'left');