File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2,18 +2,18 @@ import * as fs from 'node:fs';
22import * as path from 'node:path' ;
33import { assert } from 'chai' ;
44
5- import { Grammar } from '../src/index.js'
5+ import { Grammar } from '../src/index.js' ;
66
77describe ( 'SABNF' , function ( ) {
88 it ( 'should export Grammar' , function ( ) {
99 assert . isFunction ( Grammar ) ;
1010 } ) ;
1111
1212 it ( 'should convert to string' , function ( ) {
13- const abnfFilePath = path . join ( '..' , 'src' , 'runtime-expression .bnf' ) ;
13+ const abnfFilePath = path . join ( '..' , 'src' , 'grammar .bnf' ) ;
1414 const abnf = fs . readFileSync ( new URL ( abnfFilePath , import . meta. url ) ) . toString ( ) ;
1515 const grammar = new Grammar ( ) ;
1616
1717 assert . strictEqual ( abnf , grammar . toString ( ) ) ;
18- } )
19- } )
18+ } ) ;
19+ } ) ;
You can’t perform that action at this time.
0 commit comments