Skip to content

Commit

Permalink
fix(test): conflicting file names
Browse files Browse the repository at this point in the history
  • Loading branch information
thepian committed Mar 20, 2015
1 parent 1e89db6 commit 6565a9c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/unit/client/bundler/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,14 +98,14 @@ describe('bundler', function () {

it('should identify templates explicitly defined', function() {
var abc = ss.client.define('abc',{
view: 'main.html',
view: 'main2.html',
css: 'main.css',
code: 'main.js',
tmpl: 'main.html'
});

var abc2 = ss.client.define('abc2',{
view: 'main.html',
view: 'main2.html',
css: 'main.css',
code: 'main.js',
tmpl: ['main.html','abc/1.html','abc/2.html']
Expand All @@ -132,7 +132,7 @@ describe('bundler', function () {
it('should identify templates using /*', function() {

var abc2 = ss.client.define('abc2',{
view: 'main.html',
view: 'main2.html',
css: 'main.css',
code: 'main.js',
tmpl: 'abc/*'
Expand Down

0 comments on commit 6565a9c

Please sign in to comment.