Skip to content

Commit

Permalink
chore: remove extra comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ilee2u committed Mar 20, 2024
1 parent be138b5 commit 47bb4a7
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/data/redux.test.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -950,7 +950,6 @@ describe('Data layer integration tests', () => {
// Reset history so we can get url at index 0 later
axiosMock.resetHistory();

// FIXME: Have sequenceId initialized
const attemptToPollURL = `${latestAttemptURL}?content_id=block-v1%3Atest%2Bspecial%2Bexam%2Btype%40sequential%2Bblock%40abc123`;
axiosMock.onGet(attemptToPollURL).reply(200, {
time_remaining_seconds: 1739.9,
Expand Down Expand Up @@ -1005,7 +1004,6 @@ describe('Data layer integration tests', () => {

describe('Test pingAttempt', () => {
it('Should send attempt to error state on ping failure', async () => {
// FIXME:
const startedWorkerAttempt = Factory.build('attempt', { attempt_status: ExamStatus.STARTED, desktop_application_js_url: 'http://proctortest.com' });
const startedWorkerExam = Factory.build('exam', { attempt: startedWorkerAttempt });
await initWithExamAttempt(startedWorkerExam, startedWorkerAttempt);
Expand Down Expand Up @@ -1034,7 +1032,6 @@ describe('Data layer integration tests', () => {
});

it('Should get, and save latest attempt', async () => {
// FIXME:
const attemptDataUrl = `${getConfig().LMS_BASE_URL}${BASE_API_URL}/course_id/${courseId}?is_learning_mfe=true`;
axiosMock.onGet(attemptDataUrl)
.reply(200, {
Expand Down

0 comments on commit 47bb4a7

Please sign in to comment.