░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/canvas/spec/selenium/client_apps
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: canvas_quizzes_spec.rb
# frozen_string_literal: true # # Copyright (C) 2014 - 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/>. require_relative "../common" describe "canvas_quizzes" do include_context "in-process server selenium tests" before do quiz_with_graded_submission([ { question_data: { :name => "question 1", :points_possible => 1, "question_type" => "true_false_question" } }, { question_data: { :name => "question 2", :points_possible => 1, "question_type" => "true_false_question" } } ]) course_with_teacher_logged_in(active_all: true, course: @course) end describe "statistics app" do it "mounts" do get "/courses/#{@course.id}/quizzes/#{@quiz.id}/statistics" wait = Selenium::WebDriver::Wait.new(timeout: 5) wait.until { f("#summary-statistics").present? } expect(f("#summary-statistics")).to include_text("Average Score") end end describe "events app" do it "mounts" do Account.default.enable_feature!(:quiz_log_auditing) sub = @quiz.quiz_submissions.first get "/courses/#{@course.id}/quizzes/#{@quiz.id}/submissions/#{sub.id}/log" wait = Selenium::WebDriver::Wait.new(timeout: 5) wait.until { f("#ic-EventStream").present? } expect(f("#ic-EventStream")).to include_text("Action Log") end end end
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 canvas_quizzes_spec.rb
RB
2 KB
2023-09-24 03:36
EDIT