File tree 1 file changed +2
-31
lines changed
1 file changed +2
-31
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { Octokit } from "../../pkg/dist-src/index.js";
4
4
const BEARER_TOKEN =
5
5
"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpYXQiOjE1NTM4MTkzMTIsImV4cCI6MTU1MzgxOTM3MiwiaXNzIjoxfQ.etiSZ4LFQZ8tiMGJVqKDoGn8hxMCgwL4iLvU5xBUqbAPr4pbk_jJZmMQjuxTlOnRxq4e7NouTizGCdfohRMb3R1mpLzGPzOH9_jqSA_BWYxolsRP_WDSjuNcw6nSxrPRueMVRBKFHrqcTOZJej0djRB5pI61hDZJ_-DGtiOIFexlK3iuVKaqBkvJS5-TbTekGuipJ652g06gXuz-l8i0nHiFJldcuIruwn28hTUrjgtPbjHdSBVn_QQLKc2Fhij8OrhcGqp_D_fvb_KovVmf1X6yWiwXV5VXqWARS-JGD9JTAr2495ZlLV_E4WPxdDpz1jl6XS9HUhMuwBpaCOuipw" ;
6
6
7
- describe ( "apps" , ( ) => {
7
+ describe . skip ( "apps" , ( ) => {
8
8
let octokit ;
9
9
10
10
beforeEach ( ( ) => {
@@ -15,34 +15,5 @@ describe("apps", () => {
15
15
} ) ;
16
16
} ) ;
17
17
18
- it ( 'adds "machine-man" preview header' , ( ) => {
19
- nock ( "https://apps-test-host.com" , {
20
- reqheaders : {
21
- authorization : `bearer ${ BEARER_TOKEN } ` ,
22
- accept : "application/vnd.github.machine-man-preview+json" ,
23
- } ,
24
- } )
25
- . get ( "/app" )
26
- . reply ( 200 , { } ) ;
27
-
28
- return octokit . rest . apps . getAuthenticated ( ) ;
29
- } ) ;
30
-
31
- it ( 'adds "machine-man" preview header to custom media type' , ( ) => {
32
- nock ( "https://apps-test-host.com" , {
33
- reqheaders : {
34
- authorization : `bearer ${ BEARER_TOKEN } ` ,
35
- accept :
36
- "application/vnd.github.machine-man-preview+json,application/vnd.github.foo-bar-preview+json" ,
37
- } ,
38
- } )
39
- . get ( "/app" )
40
- . reply ( 200 , { } ) ;
41
-
42
- return octokit . rest . apps . getAuthenticated ( {
43
- mediaType : {
44
- previews : [ "foo-bar" ] ,
45
- } ,
46
- } ) ;
47
- } ) ;
18
+ it ( "No test currently implemented" , ( ) => { } ) ;
48
19
} ) ;
You can’t perform that action at this time.
0 commit comments