░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/canvas/spec/javascripts/jsx/choose_mastery_path/components
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: assignmentSpec.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 Assignment from 'ui/features/choose_mastery_path/react/components/assignment' QUnit.module('Assignment') const defaultProps = () => ({ isSelected: false, assignment: { name: 'Ch 2 Quiz', type: 'quiz', points_possible: 10, due_at: new Date(), itemId: 1, description: 'a quiz', category: { id: 'other', label: 'Other', }, }, }) const renderComponent = props => TestUtils.renderIntoDocument(<Assignment {...props} />) test('renders component', () => { const props = defaultProps() const component = renderComponent(props) const renderedList = TestUtils.scryRenderedDOMComponentsWithClass(component, 'cmp-assignment') equal(renderedList.length, 1, 'renders component') }) test('renders title', () => { const props = defaultProps() const component = renderComponent(props) const renderedList = TestUtils.scryRenderedDOMComponentsWithClass(component, 'item_name') equal(renderedList[0].textContent, 'Ch 2 Quiz', 'renders title') }) test('renders points', () => { const pointyProps = defaultProps() const component = renderComponent(pointyProps) const renderedList = TestUtils.scryRenderedDOMComponentsWithClass( component, 'points_possible_display' ) equal(renderedList[0].textContent, '10 pts', 'renders points') }) test('omits points', () => { const pointlessProps = defaultProps() pointlessProps.assignment.points_possible = null const component = renderComponent(pointlessProps) const renderedList = TestUtils.scryRenderedDOMComponentsWithClass( component, 'points_possible_display' ) equal(renderedList.length, 0, 'omits points') }) test('renders link title when selected', () => { const props = defaultProps() props.isSelected = true const component = renderComponent(props) const renderedList = TestUtils.scryRenderedDOMComponentsWithClass( component, 'cmp-assignment__title-link' ) equal(renderedList.length, 1, 'renders link title') }) test('renders description', () => { const props = defaultProps() const component = renderComponent(props) const renderedList = TestUtils.scryRenderedDOMComponentsWithClass(component, 'ig-description') equal(renderedList.length, 1, 'renders link description') })
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