~jonas-drange/online-services-common-js/navbar-autocomplete

« back to all changes in this revision

Viewing changes to src/app-promo/tests/unit/one-app-promo.html

  • Committer: Stephen Stewart
  • Date: 2014-02-22 23:57:25 UTC
  • mfrom: (18.1.2 trunk)
  • Revision ID: stephen.stewart@canonical.com-20140222235725-iw6f15t9umws19xd
mergeĀ lp:~stephen-stewart/online-services-common-js/remove-u1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!doctype html>
2
 
<html>
3
 
<head>
4
 
<meta charset="utf-8">
5
 
<title>one-app-promo Unit Tests</title>
6
 
<script>
7
 
 
8
 
  var COMBO_URL,
9
 
      MEDIA_URL = '../../../../build/',
10
 
      USE_COMBO = 0,
11
 
      USE_MIN = 1;
12
 
 
13
 
</script>
14
 
</head>
15
 
 
16
 
<body class="yui3-skin-sam">
17
 
 
18
 
<div id="log"></div>
19
 
<div id="test"></div>
20
 
 
21
 
<script src="../../../../bower_components/yui3/build/yui/yui-min.js"></script>
22
 
<script src="../../../../build/config.js"></script>
23
 
 
24
 
<script>
25
 
 
26
 
  YUI({
27
 
    combine: false,
28
 
    base: '../../../../bower_components/yui3/build/',
29
 
    modules: {
30
 
      'one-app-promo-test': {
31
 
        fullpath: './assets/one-app-promo-test.js',
32
 
        requires: ['one-app-promo', 'test']
33
 
      }
34
 
    },
35
 
    groups: {
36
 
      'u1': {
37
 
        base: '../../../../build/'
38
 
      }
39
 
    }
40
 
  }).use('test-console', 'one-app-promo-test', function (Y) {
41
 
 
42
 
    new Y.Test.Console().render('#log');
43
 
    Y.Test.Runner.run();
44
 
 
45
 
  });
46
 
 
47
 
</script>
48
 
</body>
49
 
</html>