File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
dotnet/test/common/BiDi/WebExtension Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ public async Task CanInstallPathWebExtension()
3434 var result = await bidi . WebExtension . InstallAsync ( new ExtensionPath ( path ) ) ;
3535
3636 Assert . That ( result , Is . Not . Null ) ;
37+ Assert . That ( result . Extension , Is . Not . Null ) ;
3738 }
3839
3940 [ Test ]
@@ -46,6 +47,7 @@ public async Task CanInstallArchiveWebExtension()
4647 var result = await bidi . WebExtension . InstallAsync ( new ExtensionArchivePath ( path ) ) ;
4748
4849 Assert . That ( result , Is . Not . Null ) ;
50+ Assert . That ( result . Extension , Is . Not . Null ) ;
4951 }
5052
5153 [ Test ]
@@ -60,6 +62,7 @@ public async Task CanInstallBase64WebExtension()
6062 var result = await bidi . WebExtension . InstallAsync ( new ExtensionBase64Encoded ( base64 ) ) ;
6163
6264 Assert . That ( result , Is . Not . Null ) ;
65+ Assert . That ( result . Extension , Is . Not . Null ) ;
6366 }
6467
6568 [ Test ]
You can’t perform that action at this time.
0 commit comments