Skip to content
This repository has been archived by the owner on Apr 21, 2024. It is now read-only.

Commit

Permalink
test fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
cruikshj authored and cruikshj committed Sep 3, 2015
1 parent d904767 commit 3d42546
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>knockout-select2</id>
<version>1.0.3</version>
<version>1.0.4</version>
<title>knockout-select2</title>
<authors>Shaftware</authors>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
Expand Down
2 changes: 1 addition & 1 deletion spec/knockout-select2.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
define(['knockout', 'src/knockout-select2'], function (ko, knockoutselect2) {
define(['jquery', 'knockout', 'select2', 'src/knockout-select2'], function ($, ko, select2, knockoutselect2) {

describe('Bind', function () {
var viewModel;
Expand Down
3 changes: 2 additions & 1 deletion spec/test-main.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ require.config({
baseUrl: '/base', //karma servers files from base
paths: {
jquery: 'bower_components/jQuery/dist/jquery',
knockout: 'bower_components/knockout.js/knockout'
knockout: 'bower_components/knockout/dist/knockout',
select2: 'bower_components/select2/dist/js/select2'
}
});

Expand Down

0 comments on commit 3d42546

Please sign in to comment.