░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/canvas/packages/canvas-rce/test/common
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: indicate.test.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 {equal, ok} from 'assert' import sinon from 'sinon' import indicate from '../../src/common/indicate' describe('indicate function', () => { let clock, region, margin, indicator beforeEach(() => { clock = sinon.useFakeTimers() region = { top: 10, left: 20, width: 30, height: 40, zIndex: 50 } margin = 5 indicator = indicate(region, margin) }) afterEach(() => { clock.restore() }) it('appends a div to the body', () => { equal(indicator.parentNode, document.body) }) it('removes the div after 2 seconds', () => { clock.tick(2000) equal(indicator.parentNode, null) }) describe('shape', () => { it('has dimensions of region plus margin', () => { equal(indicator.style.width, '40px') equal(indicator.style.height, '50px') }) it('is positioned at region minus margin', () => { equal(indicator.style.top, '5px') equal(indicator.style.left, '15px') }) it('has a default margin of 3', () => { region.left = 3 equal(indicate(region).style.left, '0px') }) }) describe('transitions', () => { it('div initially has enter and active classes', () => { ok(/enter/.test(indicator.className)) ok(/active/.test(indicator.className)) }) it('div has leave class after 900ms', () => { clock.tick(900) ok(/leave/.test(indicator.className)) }) it('div gets leave fast class on mouse over', () => { indicator.dispatchEvent(new window.MouseEvent('mouseover')) ok(/leaveFast/.test(indicator.className)) }) }) })
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📁 components/
DIR
—
2023-09-24 03:39
📄 fileUrl.test.js
JS
6.9 KB
2023-09-24 03:36
EDIT
📄 indicate.test.js
JS
2.3 KB
2023-09-24 03:36
EDIT
📄 mimeClass.test.js
JS
3.4 KB
2023-09-24 03:36
EDIT
📄 scroll.test.js
JS
1.3 KB
2023-09-24 03:36
EDIT