mirror of
https://github.com/Modernizr/Modernizr.git
synced 2026-01-09 15:47:55 -05:00
* Replace expect.js with chai.js * Update lock file * Update dependencies * Re-add correct test * Re-add incorrect tests so we see if travis works :-) * Test against the classNames, not the documentElement * Fix remaining errors, update dependencies
25 lines
769 B
Plaintext
25 lines
769 B
Plaintext
doctype html
|
|
html
|
|
head
|
|
meta(charset='utf-8')
|
|
meta(http-equiv='X-UA-Compatible', content='IE=edge')
|
|
title Cow tests
|
|
link(rel='stylesheet', media='all', href='../node_modules/mocha/mocha.css')
|
|
body
|
|
#mocha
|
|
#messages
|
|
#fixtures
|
|
script(src='../node_modules/json3/lib/json3.min.js')
|
|
script(src='../node_modules/jquery/dist/jquery.js')
|
|
script(src='../node_modules/lodash/lodash.js')
|
|
script(src='../node_modules/mocha/mocha.js')
|
|
script(src='../node_modules/chai/chai.js')
|
|
script(src='../node_modules/requirejs/require.js')
|
|
script.
|
|
var expect = chai.expect;
|
|
script.
|
|
mocha.setup('bdd').timeout(20000);
|
|
each test in browserTests
|
|
script(src='../'+test)
|
|
script(src="../test/browser/setup.js")
|