File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,8 @@ const nextOnNetlify = (options = {}) => {
3232
3333 setupPages ( { functionsPath, publishPath } ) ;
3434
35- setupImageFunction ( functionsPath ) ;
35+ // TO-DO: put back when jimp module issue is resolved ;(
36+ // setupImageFunction(functionsPath);
3637
3738 setupRedirects ( publishPath ) ;
3839
Original file line number Diff line number Diff line change @@ -135,9 +135,10 @@ describe("API Pages", () => {
135135describe ( "next/image" , ( ) => {
136136 const functionsDir = join ( PROJECT_PATH , "out_functions" ) ;
137137
138- test ( "sets up next_image as a function in every project by default" , ( ) => {
139- expect ( existsSync ( join ( functionsDir , "next_image.js" ) ) ) . toBe ( true ) ;
140- } ) ;
138+ // TO-DO: put back when jump module issue is resolved ;(
139+ // test("sets up next_image as a function in every project by default", () => {
140+ // expect(existsSync(join(functionsDir, "next_image.js"))).toBe(true);
141+ // });
141142} ) ;
142143
143144describe ( "SSG Pages with getStaticProps" , ( ) => {
You can’t perform that action at this time.
0 commit comments