Skip to content

Commit

Permalink
webcompat#272 Adds a labels tests section
Browse files Browse the repository at this point in the history
  • Loading branch information
karlcow committed Aug 6, 2015
1 parent dd1b323 commit d122e71
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/functional.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ define([
'./functional/issues',
'./functional/reporting',
'./functional/contributors',
'./functional/history-navigation'
'./functional/history-navigation',
'./functional/labels'
], function () {
'use strict';
});
19 changes: 19 additions & 0 deletions tests/functional/labels.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */

define([
'intern',
'intern!object',
'intern/chai!assert',
'require'
], function (intern, registerSuite, assert, require) {
'use strict';

var url = function (num) {
return intern.config.siteRoot + '/issues/' + num;
};

// labels tests to come here

});

0 comments on commit d122e71

Please sign in to comment.