From 67b647322fe8f2e338f1e41864343fe4d2a6ab90 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Mon, 11 Jul 2016 14:32:24 -0700 Subject: [PATCH] Add spec to verify app.isAccessibilitySupportEnabled return type --- spec/api-app-spec.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/spec/api-app-spec.js b/spec/api-app-spec.js index 8ceb44f19d..c95de0fb09 100644 --- a/spec/api-app-spec.js +++ b/spec/api-app-spec.js @@ -339,4 +339,10 @@ describe('app module', function () { }) }) }) + + describe('isAccessibilitySupportEnabled API', function () { + it('returns whether the Chrome has accessibility APIs enabled', function () { + assert.equal(app.isAccessibilitySupportEnabled(), 'boolean') + }) + }) })