muu

DEPRECATED lightweight JS framework
git clone https://git.ce9e.org/muu.git

commit
3141aeccac466b43b0c57f548716d1d3f3b2aabf
parent
17f7b8366eb90529d9c234b44f1e72d9338fbbdb
Author
Tobias Bengfort <tobias.bengfort@gmx.net>
Date
2015-08-28 14:35
add separat test.html for travis

Diffstat

M Gruntfile.js 2 +-
A test/travis.html 29 +++++++++++++++++++++++++++++

2 files changed, 30 insertions, 1 deletions


diff --git a/Gruntfile.js b/Gruntfile.js

@@ -89,7 +89,7 @@ module.exports = function (grunt) {
   89    89             all: {
   90    90                 options: {
   91    91                     urls: [
   92    -1                         'http://127.0.0.1:9999/test/'
   -1    92                         'http://127.0.0.1:9999/test/travis.html'
   93    93                     ],
   94    94                     browsers: browsers,
   95    95                     build: process.env.TRAVIS_JOB_ID,

diff --git a/test/travis.html b/test/travis.html

@@ -0,0 +1,29 @@
   -1     1 <!DOCTYPE html>
   -1     2 <html>
   -1     3 <head>
   -1     4     <meta charset="utf-8">
   -1     5     <meta http-equiv="X-UA-Compatible" content="IE=edge">
   -1     6     <title>Mocha Tests</title>
   -1     7     <link href="../lib/mocha/mocha.css" rel="stylesheet" />
   -1     8 
   -1     9     <!--[if IE 8]>
   -1    10     <script src="../lib/ie8/build/ie8.js"></script>
   -1    11     <script src="../lib/es5-shim/es5-shim.js"></script>
   -1    12     <script src="../lib/html5shiv/dist/html5shiv.js"></script>
   -1    13     <script>html5.addElements('muu');</script>
   -1    14     <![endif]-->
   -1    15     <!--[if lte IE 9]>
   -1    16     <script src="../lib/dom4/build/dom4.js"></script>
   -1    17     <![endif]-->
   -1    18 </head>
   -1    19 <body>
   -1    20     <div id="mocha"></div>
   -1    21 
   -1    22     <script src="../lib/mocha/mocha.js"></script>
   -1    23     <script src="../lib/expect.js/index.js"></script>
   -1    24     <script src="../lib/sinon-js/sinon.js"></script>
   -1    25     <script src="../lib/requirejs/require.js"></script>
   -1    26 
   -1    27     <script src="run.js"></script>
   -1    28 </body>
   -1    29 </html>