We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e2f0c0 commit 75a5ae7Copy full SHA for 75a5ae7
test/resolveSpec.ts
@@ -96,12 +96,12 @@ describe('Resolvables system:', function () {
96
asyncCount = 0;
97
}));
98
99
- it('should throw when creating a resolvable with an unannotated fn and strictDi mode on', inject(function ($injector) {
+ fit('should throw when creating a resolvable with an unannotated fn and strictDi mode on', inject(function ($injector) {
100
let originalStrictDi = $injector.strictDi;
101
$injector.strictDi = true;
102
103
- $injector.annotate(function fn(a) {
104
- }, true);
+ console.log($injector.annotate(function fn(a) {
+ }, true));
105
106
expect(() => {
107
makePath([ "P" ]);
0 commit comments