enketo-xslt
Advanced tools
Comparing version 1.9.1 to 1.10.0
@@ -5,8 +5,13 @@ ## Change Log | ||
[1.9.1] - 2016-03-22 | ||
[1.10.0] - 2017-04-12 | ||
---------------------- | ||
##### Changed | ||
- Repeat output now includes a repeat-info element. **Warning: major backwards-incompatible change** | ||
[1.9.1] - 2017-03-22 | ||
---------------------- | ||
##### Changed | ||
- Only add 'note' class to readonly questions that do not have a calculate bind attribute. | ||
[1.9.0] - 2016-02-28 | ||
[1.9.0] - 2017-02-28 | ||
---------------------- | ||
@@ -16,3 +21,3 @@ ##### Added | ||
[1.8.1] - 2016-02-23 | ||
[1.8.1] - 2017-02-23 | ||
---------------------- | ||
@@ -22,3 +27,3 @@ ##### Fixed | ||
[1.8.0] - 2016-02-17 | ||
[1.8.0] - 2017-02-17 | ||
---------------------- | ||
@@ -25,0 +30,0 @@ ##### Added |
{ | ||
"name": "enketo-xslt", | ||
"version": "1.9.1", | ||
"version": "1.10.0", | ||
"description": "XSL stylesheets for the Enketo XForm transformation", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -1,16 +0,16 @@ | ||
var sheets = require("../index"), | ||
assert = require("assert"); | ||
var sheets = require('../index'), | ||
assert = require('assert'); | ||
describe('sheets', function() { | ||
it('should return an xslForm sheet', function() { | ||
assert.equal(typeof sheets.xslForm, 'string'); | ||
assert.equal(sheets.xslForm.length > 0, true); | ||
}); | ||
it('should return an xslForm sheet', function() { | ||
assert.equal(typeof sheets.xslForm, 'string'); | ||
assert.equal(sheets.xslForm.length > 0, true); | ||
}); | ||
it('should return an xslForm sheet', function() { | ||
assert.equal(typeof sheets.xslModel, 'string'); | ||
assert.equal(sheets.xslModel.length > 0, true); | ||
}); | ||
it('should return an xslModel sheet', function() { | ||
assert.equal(typeof sheets.xslModel, 'string'); | ||
assert.equal(sheets.xslModel.length > 0, true); | ||
}); | ||
}); |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
113623