summaryrefslogtreecommitdiffstats
path: root/lib/constants/__tests__/configSchema.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/constants/__tests__/configSchema.js')
-rw-r--r--lib/constants/__tests__/configSchema.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/constants/__tests__/configSchema.js b/lib/constants/__tests__/configSchema.js
index 1541219..efc99b9 100644
--- a/lib/constants/__tests__/configSchema.js
+++ b/lib/constants/__tests__/configSchema.js
@@ -22,6 +22,16 @@ describe('configSchema', function() {
expect(result.errors.length).toBe(0);
});
+ it('should accept uppercase in filename', function() {
+ var result = validate({
+ structure: {
+ readme: 'BOOK.adoc'
+ }
+ });
+
+ expect(result.errors.length).toBe(0);
+ });
+
it('should not accept filepath', function() {
var result = validate({
structure: {