@@ -4,7 +4,7 @@ import * as tmp from "tmp";
44import { window , ViewColumn , Uri } from "vscode" ;
55import { fileUriToWebviewUri , webviewUriToFileUri } from '../../interface' ;
66
7- describe ( 'webview uri conversion' , function ( ) {
7+ describe ( 'webview uri conversion' , function ( ) {
88 const fileSuffix = '.bqrs' ;
99
1010 function setupWebview ( filePrefix : string ) {
@@ -21,7 +21,7 @@ describe('webview uri conversion', function () {
2121 ]
2222 }
2323 ) ;
24- after ( function ( ) {
24+ after ( function ( ) {
2525 panel . dispose ( ) ;
2626 tmpFile . removeCallback ( ) ;
2727 } ) ;
@@ -34,15 +34,15 @@ describe('webview uri conversion', function () {
3434 panel
3535 }
3636 }
37-
38- it ( 'should correctly round trip from filesystem to webview and back' , function ( ) {
37+
38+ it ( 'should correctly round trip from filesystem to webview and back' , function ( ) {
3939 const { fileUriOnDisk, panel } = setupWebview ( '' ) ;
4040 const webviewUri = fileUriToWebviewUri ( panel , fileUriOnDisk ) ;
4141 const reconstructedFileUri = webviewUriToFileUri ( webviewUri ) ;
4242 expect ( reconstructedFileUri . toString ( true ) ) . to . equal ( fileUriOnDisk . toString ( true ) ) ;
4343 } ) ;
4444
45- it ( "does not double-encode # in URIs" , function ( ) {
45+ it ( "does not double-encode # in URIs" , function ( ) {
4646 const { fileUriOnDisk, panel } = setupWebview ( '#' ) ;
4747 const webviewUri = fileUriToWebviewUri ( panel , fileUriOnDisk ) ;
4848 const parsedUri = Uri . parse ( webviewUri ) ;
0 commit comments