Github user millayr commented on a diff in the pull request:
https://github.com/apache/couchdb-fauxton/pull/889#discussion_r108424752
--- Diff: app/addons/documents/mango/__tests__/mango.actions.test.js ---
@@ -0,0 +1,60 @@
+// Licensed under the Apache License, Version 2.0 (the "License"); you may
not
+// use this file except in compliance with the License. You may obtain a
copy of
+// the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT
+// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+// License for the specific language governing permissions and limitations
under
+// the License.
+
+import utils from '../../../../../test/mocha/testUtils';
+import FauxtonAPI from "../../../../core/api";
+import Actions from '../mango.actions';
+import sinon from 'sinon';
+
+const {restore, assert} = utils;
+FauxtonAPI.router = new FauxtonAPI.Router([]);
+
+describe('Mango actions', () => {
+
+ afterEach(() => {
+ restore(FauxtonAPI.navigate);
+ restore(FauxtonAPI.addNotification);
+ });
+
+ it("should show a notification and redirect if database doesn't exist",
(done) => {
+ const navigateSpy = sinon.spy(FauxtonAPI, 'navigate');
+ const notificationSpy = sinon.spy(FauxtonAPI, 'addNotification');
+
+ const database = {
+ safeID : () => 'safe-id-db'
+ };
+
+ const options = {
+ database,
+ indexList: {
+ database,
+ fetch: () => {
+ return Promise.reject({
+ responseJSON: {
+ error: 'not_found'
+ }
+ });
+ },
+ }
+ };
+
+ Actions.getIndexList(options);
+ process.nextTick(() => {
+ assert.ok(notificationSpy.calledOnce);
--- End diff --
I've been trying to use Jest's `expect` when doing these checks.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---