From 4e22d5dd8a34e711cdef834c4785ebfc045e84f3 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Mon, 11 Jul 2016 14:48:48 -0700 Subject: [PATCH] Add missing typeof --- spec/api-app-spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/api-app-spec.js b/spec/api-app-spec.js index c95de0fb09..f1e1b1b5a7 100644 --- a/spec/api-app-spec.js +++ b/spec/api-app-spec.js @@ -342,7 +342,7 @@ describe('app module', function () { describe('isAccessibilitySupportEnabled API', function () { it('returns whether the Chrome has accessibility APIs enabled', function () { - assert.equal(app.isAccessibilitySupportEnabled(), 'boolean') + assert.equal(typeof app.isAccessibilitySupportEnabled(), 'boolean') }) }) })