From feb3b88a3b75b0defbb3ddee53d190baa6988db6 Mon Sep 17 00:00:00 2001 From: walljm Date: Tue, 31 Jan 2017 17:06:53 -0500 Subject: [PATCH] HELP: added help, fixed id --- DynamicBibleIonic/config.xml | 2 +- DynamicBibleIonic/src/pages/help/help.html | 9 +++++++++ DynamicBibleIonic/src/services/bible-service.spec.ts | 2 +- DynamicBibleIonic/src/test.ts | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/DynamicBibleIonic/config.xml b/DynamicBibleIonic/config.xml index 18abd71f..563a9c47 100644 --- a/DynamicBibleIonic/config.xml +++ b/DynamicBibleIonic/config.xml @@ -1,5 +1,5 @@ - + Dynamic Bible A bible app designed for bible study Jason Wall diff --git a/DynamicBibleIonic/src/pages/help/help.html b/DynamicBibleIonic/src/pages/help/help.html index 04cd90a0..9bda3a5c 100644 --- a/DynamicBibleIonic/src/pages/help/help.html +++ b/DynamicBibleIonic/src/pages/help/help.html @@ -37,6 +37,15 @@
  • Any Errors and Omission you find would be appreciated. Please contact me via www.jasonwall.org.
  • +

    Visit Us Online

    +

    +www.dynamicbible.com hosts the online version of the web app. We are currently available on the +Windows Platform via the Electron app from atom.io +and on the Google Android Play store. + +We are working on an IOS distribution and will be releasing that soon. +

    +

    Book Names and Accepted Abbreviations

    • Genesis: gen, ge, gn
    • diff --git a/DynamicBibleIonic/src/services/bible-service.spec.ts b/DynamicBibleIonic/src/services/bible-service.spec.ts index d4529025..eba0a4d3 100644 --- a/DynamicBibleIonic/src/services/bible-service.spec.ts +++ b/DynamicBibleIonic/src/services/bible-service.spec.ts @@ -66,7 +66,7 @@ describe('Bible Service', () => let ref = new Reference("Gen 100:1").Section; var r = svc.getResult(ref); - expect(r.msg).toBe('Unable to retrieve bible passage Genesis 100:1.'); + expect(r.msg).toBe('The requested chapter for Genesis is out of range. Please pick a chapter between 1 and 50.'); expect(r.ref).toBe("Genesis 100:1"); expect(r.status).toBe(-1); expect(r.testament).toBe(''); diff --git a/DynamicBibleIonic/src/test.ts b/DynamicBibleIonic/src/test.ts index 726bd18d..10860f21 100644 --- a/DynamicBibleIonic/src/test.ts +++ b/DynamicBibleIonic/src/test.ts @@ -29,7 +29,7 @@ getTestBed().initTestEnvironment( platformBrowserDynamicTesting(), ); // Then we find all the tests. -let context: any = require.context('./', true, /word-service\.spec\.ts/); +let context: any = require.context('./', true, /\.spec\.ts/); // And load the modules. context.keys().map(context); // Finally, start Karma to run the tests.