Skip to content

Commit

Permalink
Version increment to 0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ElliotNB committed Jul 9, 2020
1 parent d1baaa5 commit ec20a25
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

https://github.com/elliotnb/nimbly

Version 0.1.4
Version 0.1.5

Licensed under the MIT license:

Expand Down
2 changes: 1 addition & 1 deletion nimbly.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Nimbly
* Version 0.1.4
* Version 0.1.5
* https://github.com/elliotnb/nimbly
*
* Licensed under the MIT license:
Expand Down
2 changes: 1 addition & 1 deletion nimbly.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "nimbly",
"description": "Nimbly is a JavaScript component framework for single page applications.",
"version": "0.1.4",
"version": "0.1.5",
"main": "nimbly.js",
"devDependencies": {
"babel-core": "6.26.0",
Expand Down
3 changes: 2 additions & 1 deletion test/suite/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,8 @@ describe('HelloWorld component test suite.', function() {
expect(helloWorld.jqDom.find(".list-item-test").length).to.equal(4);
});

it('Simulated _afterInDocument handler.', (done) => {
it('Simulated _afterInDocument handler.', (done) => {
helloWorld._afterInDocument();
setTimeout(() => {
expect(helloWorld.data.in_document).to.equal(true);
done();
Expand Down

0 comments on commit ec20a25

Please sign in to comment.