File tree Expand file tree Collapse file tree 15 files changed +15
-15
lines changed Expand file tree Collapse file tree 15 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ const milestoneTemplates = [
77
77
} ,
78
78
] ;
79
79
80
- describe ( 'CREATE milestone template' , ( ) => {
80
+ xdescribe ( 'CREATE milestone template' , ( ) => {
81
81
beforeEach ( ( ) => testUtil . clearDb ( )
82
82
. then ( ( ) => models . ProductTemplate . bulkCreate ( productTemplates ) )
83
83
. then ( ( ) => models . ProductMilestoneTemplate . bulkCreate ( milestoneTemplates ) ) ,
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ const milestoneTemplates = [
77
77
} ,
78
78
] ;
79
79
80
- describe ( 'DELETE milestone template' , ( ) => {
80
+ xdescribe ( 'DELETE milestone template' , ( ) => {
81
81
beforeEach ( ( ) => testUtil . clearDb ( )
82
82
. then ( ( ) => models . ProductTemplate . bulkCreate ( productTemplates ) )
83
83
. then ( ( ) => models . ProductMilestoneTemplate . bulkCreate ( milestoneTemplates ) ) ,
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ const milestoneTemplates = [
80
80
} ,
81
81
] ;
82
82
83
- describe ( 'GET milestone template' , ( ) => {
83
+ xdescribe ( 'GET milestone template' , ( ) => {
84
84
beforeEach ( ( ) => testUtil . clearDb ( )
85
85
. then ( ( ) => models . ProductTemplate . bulkCreate ( productTemplates ) )
86
86
. then ( ( ) => models . ProductMilestoneTemplate . bulkCreate ( milestoneTemplates ) ) ,
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ const milestoneTemplates = [
90
90
} ,
91
91
] ;
92
92
93
- describe ( 'LIST milestone template' , ( ) => {
93
+ xdescribe ( 'LIST milestone template' , ( ) => {
94
94
beforeEach ( ( ) => testUtil . clearDb ( )
95
95
. then ( ( ) => models . ProductTemplate . bulkCreate ( productTemplates ) )
96
96
. then ( ( ) => models . ProductMilestoneTemplate . bulkCreate ( milestoneTemplates ) ) ,
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ const milestoneTemplates = [
100
100
} ,
101
101
] ;
102
102
103
- describe ( 'UPDATE milestone template' , ( ) => {
103
+ xdescribe ( 'UPDATE milestone template' , ( ) => {
104
104
beforeEach ( ( ) => testUtil . clearDb ( )
105
105
. then ( ( ) => models . ProductTemplate . bulkCreate ( productTemplates ) )
106
106
. then ( ( ) => models . ProductMilestoneTemplate . bulkCreate ( milestoneTemplates ) ) ,
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import { EVENT } from '../../constants';
11
11
12
12
const should = chai . should ( ) ;
13
13
14
- describe ( 'CREATE milestone' , ( ) => {
14
+ xdescribe ( 'CREATE milestone' , ( ) => {
15
15
let projectId1 ;
16
16
let projectId2 ;
17
17
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import testUtil from '../../tests/util';
9
9
import { EVENT } from '../../constants' ;
10
10
11
11
12
- describe ( 'DELETE milestone' , ( ) => {
12
+ xdescribe ( 'DELETE milestone' , ( ) => {
13
13
beforeEach ( ( done ) => {
14
14
testUtil . clearDb ( )
15
15
. then ( ( ) => {
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import testUtil from '../../tests/util';
10
10
11
11
const should = chai . should ( ) ;
12
12
13
- describe ( 'GET milestone' , ( ) => {
13
+ xdescribe ( 'GET milestone' , ( ) => {
14
14
before ( ( done ) => {
15
15
testUtil . clearDb ( )
16
16
. then ( ( ) => {
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ const milestones = [
79
79
} ,
80
80
] ;
81
81
82
- describe ( 'LIST timelines' , ( ) => {
82
+ xdescribe ( 'LIST timelines' , ( ) => {
83
83
before ( function beforeHook ( done ) {
84
84
this . timeout ( 10000 ) ;
85
85
testUtil . clearDb ( )
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import { EVENT } from '../../constants';
11
11
12
12
const should = chai . should ( ) ;
13
13
14
- describe ( 'UPDATE Milestone' , ( ) => {
14
+ xdescribe ( 'UPDATE Milestone' , ( ) => {
15
15
beforeEach ( ( done ) => {
16
16
testUtil . clearDb ( )
17
17
. then ( ( ) => {
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import { EVENT } from '../../constants';
11
11
12
12
const should = chai . should ( ) ;
13
13
14
- describe ( 'CREATE timeline' , ( ) => {
14
+ xdescribe ( 'CREATE timeline' , ( ) => {
15
15
let projectId1 ;
16
16
let projectId2 ;
17
17
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import { EVENT } from '../../constants';
11
11
12
12
const should = chai . should ( ) ; // eslint-disable-line no-unused-vars
13
13
14
- describe ( 'DELETE timeline' , ( ) => {
14
+ xdescribe ( 'DELETE timeline' , ( ) => {
15
15
beforeEach ( ( done ) => {
16
16
testUtil . clearDb ( )
17
17
. then ( ( ) => {
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ const milestones = [
58
58
} ,
59
59
] ;
60
60
61
- describe ( 'GET timeline' , ( ) => {
61
+ xdescribe ( 'GET timeline' , ( ) => {
62
62
before ( ( done ) => {
63
63
testUtil . clearDb ( )
64
64
. then ( ( ) => {
Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ const milestones = [
97
97
] ;
98
98
99
99
100
- describe ( 'LIST timelines' , ( ) => {
100
+ xdescribe ( 'LIST timelines' , ( ) => {
101
101
before ( function beforeHook ( done ) {
102
102
this . timeout ( 10000 ) ;
103
103
testUtil . clearDb ( )
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ const milestones = [
60
60
} ,
61
61
] ;
62
62
63
- describe ( 'UPDATE timeline' , ( ) => {
63
+ xdescribe ( 'UPDATE timeline' , ( ) => {
64
64
beforeEach ( ( done ) => {
65
65
testUtil . clearDb ( )
66
66
. then ( ( ) => {
You can’t perform that action at this time.
0 commit comments