@@ -121,7 +121,7 @@ describe('NavBar Component', () => {
121
121
fireEvent . click ( publishButton ) ;
122
122
} ) ;
123
123
124
- xit ( 'handles publish correctly with new project' , async ( ) => {
124
+ it ( 'handles publish correctly with new project' , async ( ) => {
125
125
const publishProjectMock = jest . spyOn ( projectFunctions , 'publishProject' ) ;
126
126
publishProjectMock . mockResolvedValueOnce ( {
127
127
_id : 'mockedId' ,
@@ -168,7 +168,7 @@ describe('NavBar Component', () => {
168
168
} ) ;
169
169
170
170
171
- xit ( 'handles unpublish correctly' , async ( ) => {
171
+ it ( 'handles unpublish correctly' , async ( ) => {
172
172
const unpublishProjectMock = jest . spyOn ( projectFunctions , 'unpublishProject' ) ;
173
173
unpublishProjectMock . mockResolvedValueOnce ( {
174
174
_id : 'mockedId' ,
@@ -205,7 +205,7 @@ describe('NavBar Component', () => {
205
205
}
206
206
} ) ;
207
207
208
- xit ( 'handles export correctly' , async ( ) => {
208
+ it ( 'handles export correctly' , async ( ) => {
209
209
const store = configureStore ( {
210
210
reducer : rootReducer ,
211
211
preloadedState : {
@@ -239,7 +239,6 @@ describe('NavBar Component', () => {
239
239
fireEvent . click ( exportComponentsOption ) ;
240
240
241
241
} ) ;
242
-
243
242
test ( 'handles dropdown menu correctly' , async ( ) => {
244
243
const store = configureStore ( {
245
244
reducer : rootReducer ,
0 commit comments