This repository was archived by the owner on Feb 15, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +9
-29
lines changed Expand file tree Collapse file tree 1 file changed +9
-29
lines changed Original file line number Diff line number Diff line change @@ -147,35 +147,15 @@ describe('Backend', function() {
147
147
firstAggregation . should . have
148
148
. property ( 'activities' )
149
149
. with . lengthOf ( 1 ) ;
150
- firstAggregation [ 'activities' ] [ 0 ] . should . have . property (
151
- 'actor' ,
152
- ) ;
153
- firstAggregation [ 'activities' ] [ 0 ] . should . have . property (
154
- 'object' ,
155
- ) ;
156
- firstAggregation [
157
- 'activities'
158
- ] [ 0 ] . object . should . have . property ( '_id' ) ;
159
- firstAggregation [ 'activities' ] [ 0 ] . should . have . property (
160
- 'verb' ,
161
- ) ;
162
- secondAggregation [ 'activities' ] [ 0 ] . should . have . property (
163
- 'actor' ,
164
- ) ;
165
- secondAggregation [ 'activities' ] [ 0 ] . should . have . property (
166
- 'object' ,
167
- ) ;
168
- secondAggregation [
169
- 'activities'
170
- ] [ 0 ] . object . should . have . property ( '_id' ) ;
171
- secondAggregation [ 'activities' ] [ 0 ] . should . have . property (
172
- 'verb' ,
173
- ) ;
174
- firstAggregation [
175
- 'activities'
176
- ] [ 0 ] . object . _id . should . not . equal (
177
- secondAggregation [ 'activities' ] [ 0 ] . object . _id ,
178
- ) ;
150
+ firstAggregation [ 'activities' ] [ 0 ] . should . have . property ( 'actor' ) ;
151
+ firstAggregation [ 'activities' ] [ 0 ] . should . have . property ( 'object' ) ;
152
+ firstAggregation [ 'activities' ] [ 0 ] . object . should . have . property ( '_id' ) ;
153
+ firstAggregation [ 'activities' ] [ 0 ] . should . have . property ( 'verb' ) ;
154
+ secondAggregation [ 'activities' ] [ 0 ] . should . have . property ( 'actor' ) ;
155
+ secondAggregation [ 'activities' ] [ 0 ] . should . have . property ( 'object' ) ;
156
+ secondAggregation [ 'activities' ] [ 0 ] . object . should . have . property ( '_id' ) ;
157
+ secondAggregation [ 'activities' ] [ 0 ] . should . have . property ( 'verb' ) ;
158
+ firstAggregation [ 'activities' ] [ 0 ] . object . _id . should . not . equal ( secondAggregation [ 'activities' ] [ 0 ] . object . _id ) ;
179
159
done ( ) ;
180
160
} )
181
161
. catch ( done ) ;
You can’t perform that action at this time.
0 commit comments