@@ -21,7 +21,10 @@ beforeEach<FixtureTestContext>(async (ctx) => {
21
21
await startMockBlobStore ( ctx )
22
22
} )
23
23
24
- describe ( 'WASM' , ( ) => {
24
+ describe . each ( [
25
+ { fixture : 'wasm' , edgeHandlerFunction : '___netlify-edge-handler-middleware' } ,
26
+ { fixture : 'wasm-src' , edgeHandlerFunction : '___netlify-edge-handler-src-middleware' } ,
27
+ ] ) ( '$fixture' , ( { fixture, edgeHandlerFunction } ) => {
25
28
beforeEach < FixtureTestContext > ( async ( ctx ) => {
26
29
// set for each test a new deployID and siteID
27
30
ctx . deployID = generateRandomObjectID ( )
@@ -33,7 +36,7 @@ describe('WASM', () => {
33
36
34
37
await startMockBlobStore ( ctx )
35
38
36
- await createFixture ( 'wasm' , ctx )
39
+ await createFixture ( fixture , ctx )
37
40
await runPlugin ( ctx )
38
41
} )
39
42
@@ -55,10 +58,10 @@ describe('WASM', () => {
55
58
expect ( ogNode . headers [ 'content-type' ] ) . toBe ( 'image/png' )
56
59
} )
57
60
58
- test < FixtureTestContext > ( 'should work in middleware' , async ( ctx ) => {
61
+ test . only < FixtureTestContext > ( 'should work in middleware' , async ( ctx ) => {
59
62
const origin = new LocalServer ( )
60
63
const response = await invokeEdgeFunction ( ctx , {
61
- functions : [ '___netlify-edge-handler-middleware' ] ,
64
+ functions : [ edgeHandlerFunction ] ,
62
65
origin,
63
66
url : '/wasm?input=3' ,
64
67
} )
0 commit comments