File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 1
1
/* eslint-disable prefer-rest-params */
2
2
import * as t from "tap" ;
3
- import { Agent } from "../agent/Agent" ;
4
3
import { createServer , Server } from "http" ;
5
- import { ReportingAPIForTesting } from "../agent/api/ReportingAPIForTesting" ;
6
4
import { Token } from "../agent/api/Token" ;
7
5
import { Context , runWithContext } from "../agent/Context" ;
8
- import { LoggerNoop } from "../agent/logger/LoggerNoop" ;
9
6
import { createTestAgent } from "../helpers/createTestAgent" ;
10
7
import { Fetch } from "./Fetch" ;
11
8
Original file line number Diff line number Diff line change @@ -54,6 +54,8 @@ function createContext(): Context {
54
54
} ;
55
55
}
56
56
57
+ t . setTimeout ( 60 * 1000 ) ;
58
+
57
59
t . test ( "it works" , ( t ) => {
58
60
const agent = createTestAgent ( {
59
61
token : new Token ( "123" ) ,
You can’t perform that action at this time.
0 commit comments