35 | -------------------------------------------------------------------------------- /src/templates/index.html: -------------------------------------------------------------------------------- 1 |

Hello world! This is INIT.

2 | -------------------------------------------------------------------------------- /src/tile-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/use-init/init/15280229fd011a2466ed20fe18dfea161338a312/src/tile-wide.png -------------------------------------------------------------------------------- /src/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/use-init/init/15280229fd011a2466ed20fe18dfea161338a312/src/tile.png -------------------------------------------------------------------------------- /test/main.js: -------------------------------------------------------------------------------- 1 | // jshint camelcase: false 2 | 3 | // Include your specs here 4 | import ModuleSpec from '../src/modules/module/module.spec.js'; 5 | 6 | (function () { 7 | 'use strict'; 8 | 9 | // Make async 10 | window.__karma__.loaded = function () {}; 11 | 12 | // Set the flag for test environment 13 | window.__test = true; 14 | 15 | // Execute new specs here 16 | new ModuleSpec(); 17 | 18 | window.__karma__.start(); 19 | }()); 20 | --------------------------------------------------------------------------------