░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/canvas/spec/javascripts/jsx/choose_mastery_path/components
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: pathOptionSpec.js
/* * Copyright (C) 2016 - 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 TestUtils from 'react-dom/test-utils' import PathOption from 'ui/features/choose_mastery_path/react/components/path-option' QUnit.module('Path Option') const defaultProps = () => ({ assignments: [ { title: 'Ch 2 Quiz', type: 'quiz', points: 10, due_at: new Date(), itemId: 1, category: { id: 'other', label: 'Other', }, }, { title: 'Ch 2 Review', type: 'assignment', points: 10, due_at: new Date(), itemId: 1, category: { id: 'other', label: 'Other', }, }, ], setId: 1, optionIndex: 0, selectedOption: null, selectOption: () => {}, }) const renderComponent = props => TestUtils.renderIntoDocument(<PathOption {...props} />) test('renders component', () => { const props = defaultProps() const component = renderComponent(props) const renderedList = TestUtils.scryRenderedDOMComponentsWithClass(component, 'cmp-option') equal(renderedList.length, 1, 'renders component') }) test('renders all assignments', () => { const props = defaultProps() const component = renderComponent(props) const renderedList = TestUtils.scryRenderedDOMComponentsWithClass(component, 'cmp-assignment') equal(renderedList.length, 2, 'renders assignments') }) test('renders selected when selected', () => { const props = defaultProps() props.selectedOption = 1 const component = renderComponent(props) const renderedList = TestUtils.scryRenderedDOMComponentsWithClass( component, 'cmp-option__selected' ) equal(renderedList.length, 1, 'renders selected') }) test('renders disabled when another path is selected', () => { const props = defaultProps() props.selectedOption = 2 const component = renderComponent(props) const renderedList = TestUtils.scryRenderedDOMComponentsWithClass( component, 'cmp-option__disabled' ) equal(renderedList.length, 1, 'renders disabled') })
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 assignmentSpec.js
JS
3 KB
2023-09-24 03:39
EDIT
📄 chooseMasteryPathSpec.js
JS
2.6 KB
2023-09-24 03:39
EDIT
📄 pathOptionSpec.js
JS
2.6 KB
2023-09-24 03:39
EDIT
📄 selectButtonSpec.js
JS
2.2 KB
2023-09-24 03:39
EDIT