░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/canvas/spec/javascripts/jsx/new_user_tutorial
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: NewUserTutorialToggleButtonSpec.js
/* * Copyright (C) 2017 - 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/>. */ /* global QUnit */ import React from 'react' import {shallow} from 'enzyme' import NewUserTutorialToggleButton from 'ui/features/new_user_tutorial/react/NewUserTutorialToggleButton' import createTutorialStore from 'ui/features/new_user_tutorial/react/util/createTutorialStore' QUnit.module('NewUserTutorialToggleButton Spec') test('Deafaults to expanded', () => { const store = createTutorialStore() const wrapper = shallow(<NewUserTutorialToggleButton store={store} />) ok(!wrapper.state('isCollapsed')) }) test('Toggles isCollapsed when clicked', () => { const fakeEvent = { preventDefault() {}, } const store = createTutorialStore() const wrapper = shallow(<NewUserTutorialToggleButton store={store} />) wrapper.simulate('click', fakeEvent) ok(wrapper.state('isCollapsed')) }) test('shows IconMoveStart when isCollapsed is true', () => { const store = createTutorialStore({isCollapsed: true}) const wrapper = shallow(<NewUserTutorialToggleButton store={store} />) ok(wrapper.find('IconMoveStartLine').exists()) }) test('shows IconMoveEnd when isCollapsed is false', () => { const store = createTutorialStore({isCollapsed: false}) const wrapper = shallow(<NewUserTutorialToggleButton store={store} />) ok(wrapper.find('IconMoveEndLine').exists()) })
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📁 trays/
DIR
—
2023-09-24 03:39
📁 utils/
DIR
—
2023-09-24 03:36
📄 ConfirmEndTutorialDialogSpec.js
JS
1.9 KB
2023-09-24 03:39
EDIT
📄 NewUserTutorialToggleButtonSpec.js
JS
1.9 KB
2023-09-24 03:39
EDIT