░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/canvas/spec/javascripts/jsx/announcements/components
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: ConfirmDeleteModalSpec.js
/* * Copyright (C) 2018 - present Instructure, Inc. * * This file is part of Canvas. * * Canvas is free software: you can redistribute it and/or modify it under * the terms of the GNU Affero General Public License as published by the Free * Software Foundation, version 3 of the License. * * Canvas is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR * A PARTICULAR PURPOSE. See the GNU Affero General Public License for more * details. * * You should have received a copy of the GNU Affero General Public License along * with this program. If not, see <http://www.gnu.org/licenses/>. */ import React from 'react' import {shallow} from 'enzyme' import merge from 'lodash/merge' import ConfirmDeleteModal from 'ui/features/announcements/react/components/ConfirmDeleteModal' const makeProps = (props = {}) => merge( { onConfirm() {}, onCancel() {}, onHide() {}, modalRef() {}, selectedCount: 1, applicationElement: () => document.getElementById('fixtures'), }, props ) QUnit.module('ConfirmDeleteModal component') test('should call onConfirm prop after confirming delete', assert => { const done = assert.async() const confirmSpy = sinon.spy() const tree = shallow(<ConfirmDeleteModal {...makeProps({onConfirm: confirmSpy})} />) tree.find('#confirm_delete_announcements').simulate('click') setTimeout(() => { equal(confirmSpy.callCount, 1) done() }) }) test('should call onHide prop after confirming delete', assert => { const done = assert.async() const hideSpy = sinon.spy() const tree = shallow(<ConfirmDeleteModal {...makeProps({onHide: hideSpy})} />) tree.find('#confirm_delete_announcements').simulate('click') setTimeout(() => { equal(hideSpy.callCount, 1) done() }) }) test('should call onCancel prop after cancelling', assert => { const done = assert.async() const cancelSpy = sinon.spy() const tree = shallow(<ConfirmDeleteModal {...makeProps({onCancel: cancelSpy})} />) tree.find('#cancel_delete_announcements').simulate('click') setTimeout(() => { equal(cancelSpy.callCount, 1) done() }) }) test('should call onHide prop after cancelling', assert => { const done = assert.async() const hideSpy = sinon.spy() const tree = shallow(<ConfirmDeleteModal {...makeProps({onHide: hideSpy})} />) tree.find('#confirm_delete_announcements').simulate('click') setTimeout(() => { equal(hideSpy.callCount, 1) done() }) })
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 AnnouncementsIndexSpec.js
JS
6.2 KB
2023-09-24 03:39
EDIT
📄 ConfirmDeleteModalSpec.js
JS
2.5 KB
2023-09-24 03:39
EDIT
📄 IndexHeaderSpec.js
JS
6.8 KB
2023-09-24 03:39
EDIT