@@ -96,7 +96,7 @@ describe('getFullActivity', () => {
9696 assert . deepEqual ( fullActivity , TEST_MERGED_ACTIVITY ) ;
9797 } ) ;
9898
99- it ( 'should return the definition and contextActivities when getting a existing activity' , async ( ) => {
99+ it . skip ( 'should return the definition and contextActivities when getting a existing activity' , async ( ) => {
100100 const statement = createStatement ( {
101101 object : TEST_ACTIVITY ,
102102 ...TEST_CONTEXT_ACTIVITIES ,
@@ -113,7 +113,7 @@ describe('getFullActivity', () => {
113113 assert . deepEqual ( fullActivity , TEST_ACTIVITY_WITH_CONTEXT_ACTIVITIES ) ;
114114 } ) ;
115115
116- it ( 'should return the contextActivities when getting a existing activity' , async ( ) => {
116+ it . skip ( 'should return the contextActivities when getting a existing activity' , async ( ) => {
117117 const statement = createStatement ( {
118118 object : TEST_ACTIVITY ,
119119 ...TEST_CONTEXT_ACTIVITIES ,
@@ -130,7 +130,7 @@ describe('getFullActivity', () => {
130130 assert . deepEqual ( fullActivity , TEST_ACTIVITY_WITH_CONTEXT_ACTIVITIES ) ;
131131 } ) ;
132132
133- it ( 'should merge the contextActivities when storing two contextActivities in one batch' , async ( ) => {
133+ it . skip ( 'should merge the contextActivities when storing two contextActivities in one batch' , async ( ) => {
134134 const initialStatement = createStatement ( {
135135 object : TEST_ACTIVITY ,
136136 ...TEST_CONTEXT_ACTIVITIES ,
@@ -151,7 +151,7 @@ describe('getFullActivity', () => {
151151 assert . deepEqual ( fullActivity , TEST_ACTIVITY_WITH_CONTEXT_ACTIVITIES ) ;
152152 } ) ;
153153
154- it ( 'should merge two different contextActivities when storing contextActivities in one batch' , async ( ) => {
154+ it . skip ( 'should merge two different contextActivities when storing contextActivities in one batch' , async ( ) => {
155155 const initialStatement = createStatement ( {
156156 object : TEST_ACTIVITY ,
157157 ...TEST_CONTEXT_ACTIVITIES ,
@@ -172,7 +172,7 @@ describe('getFullActivity', () => {
172172 assert . deepEqual ( fullActivity , TEST_ACTIVITY_WITH_MERGED_CONTEXT_ACTIVITIES ) ;
173173 } ) ;
174174
175- it ( 'should return last contextActivities when storing contextActivities in two batches' , async ( ) => {
175+ it . skip ( 'should return last contextActivities when storing contextActivities in two batches' , async ( ) => {
176176 const initialStatement = createStatement ( {
177177 object : TEST_ACTIVITY ,
178178 ...TEST_CONTEXT_ACTIVITIES ,
0 commit comments