A test suite for validating Firescript syntax parsing. Firescript is a compile-to-JavaScript language with a Pythonic indentation-based syntax. This package provides a framework to define and run syntax tests against Firescript code. Version 0.3.3 is the latest stable release, with limited cadence. It is primarily used internally for the Firescript compiler. Differentiators: purpose-built for Firescript syntax, not general-purpose testing. Limited community adoption.
npm install firescript-syntax-testNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Demonstrates loading a Firescript code string and running syntax tests.
Use ESM imports (import) instead of require().
Pin exact version in dependencies.
Use `SyntaxTest` instead.
Ensure input is valid Firescript syntax.
Use consistent indentation (spaces recommended).
Write Firescript syntax: 'let x = 5' not 'let x = 5' (if that is the issue). Actually write Firescript: 'x = 5'.
Use `import { SyntaxTest } from 'firescript-syntax-test'` or default import.Run `npm install firescript-syntax-test` and ensure project uses ESM (type: module in package.json).
No dependency data recorded yet.