@@ -31,7 +31,7 @@ import unresolveThreadMutation from '../../lib/mutations/__generated__/unresolve
31
31
import updateReviewCommentMutation from '../../lib/mutations/__generated__/updatePrReviewCommentMutation.graphql' ;
32
32
import updatePrReviewMutation from '../../lib/mutations/__generated__/updatePrReviewSummaryMutation.graphql' ;
33
33
34
- describe ( 'ReviewsController' , function ( ) {
34
+ describe . only ( 'ReviewsController' , function ( ) {
35
35
let atomEnv , relayEnv , localRepository , noop , clock ;
36
36
37
37
beforeEach ( async function ( ) {
@@ -291,7 +291,7 @@ describe('ReviewsController', function() {
291
291
} ) ;
292
292
293
293
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 ( ) {
295
295
expectRelayQuery ( {
296
296
name : addPrReviewMutation . operation . name ,
297
297
variables : {
@@ -347,7 +347,7 @@ describe('ReviewsController', function() {
347
347
assert . isFalse ( didFailComment . called ) ;
348
348
} ) ;
349
349
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 ( ) {
351
351
const reportRelayError = sinon . spy ( ) ;
352
352
353
353
expectRelayQuery ( {
@@ -378,7 +378,7 @@ describe('ReviewsController', function() {
378
378
assert . isTrue ( didFailComment . called ) ;
379
379
} ) ;
380
380
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 ( ) {
382
382
const reportRelayError = sinon . spy ( ) ;
383
383
384
384
expectRelayQuery ( {
0 commit comments