Skip to content

Commit 90fe9bb

Browse files
committed
Fixed formatting
1 parent 4bdacaf commit 90fe9bb

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

context-api/context-api.test.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -126,26 +126,26 @@ describe("context api", () => {
126126
},
127127
});
128128

129-
await run(function*() {
129+
await run(function* () {
130130
yield* math.around({
131131
*add([left, right], next) {
132132
return 10 + (yield* next(left, right));
133-
}
133+
},
134134
});
135135

136136
yield* math.around({
137137
*add([left, right], next) {
138138
return 100 + (yield* next(left, right));
139-
}
140-
})
139+
},
140+
});
141141

142-
yield* math.around({
142+
yield* math.around({
143143
*add([left, right], next) {
144144
return 20 + (yield* next(left, right));
145-
}
146-
})
147-
145+
},
146+
});
147+
148148
expect(yield* math.operations.add(5, 15)).toEqual(150);
149149
});
150-
})
150+
});
151151
});

0 commit comments

Comments
 (0)