Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Commit 8d1d4a1

Browse files
committed
Run all ReviewsController tests
1 parent 46453be commit 8d1d4a1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/controllers/reviews-controller.test.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import unresolveThreadMutation from '../../lib/mutations/__generated__/unresolve
3131
import updateReviewCommentMutation from '../../lib/mutations/__generated__/updatePrReviewCommentMutation.graphql';
3232
import updatePrReviewMutation from '../../lib/mutations/__generated__/updatePrReviewSummaryMutation.graphql';
3333

34-
describe('ReviewsController', function() {
34+
describe.only('ReviewsController', function() {
3535
let atomEnv, relayEnv, localRepository, noop, clock;
3636

3737
beforeEach(async function() {
@@ -291,7 +291,7 @@ describe('ReviewsController', function() {
291291
});
292292

293293
describe('adding a single comment', function() {
294-
it.only('creates a review, attaches the comment, and submits it', async function() {
294+
it('creates a review, attaches the comment, and submits it', async function() {
295295
expectRelayQuery({
296296
name: addPrReviewMutation.operation.name,
297297
variables: {
@@ -347,7 +347,7 @@ describe('ReviewsController', function() {
347347
assert.isFalse(didFailComment.called);
348348
});
349349

350-
it.only('creates a notification when the review cannot be created', async function() {
350+
it('creates a notification when the review cannot be created', async function() {
351351
const reportRelayError = sinon.spy();
352352

353353
expectRelayQuery({
@@ -378,7 +378,7 @@ describe('ReviewsController', function() {
378378
assert.isTrue(didFailComment.called);
379379
});
380380

381-
it.only('creates a notification and deletes the review when the comment cannot be added', async function() {
381+
it('creates a notification and deletes the review when the comment cannot be added', async function() {
382382
const reportRelayError = sinon.spy();
383383

384384
expectRelayQuery({

0 commit comments

Comments
 (0)