This repository contains TmLanguage files that are consumed by DatWeave editors and plugins.
The XML files are generated from the YAML files, so contributors should hand-modify the YAML files, and XML files should only be generated by running build script.
Update the XML files from within the build
folder
cd build
npm install # Installs dependencies required for building
npm start # Compiles & builds the XML files
Test are run from within the tests
folder and depend on build to make sure XML files are upto date
cd build
npm install # Installs dependencies required for building
cd ../tests
npm install # Installs dependencies required for testing
npm test # Compiles & runs tests
Tests are run using snapshot testing, there is a baseline for each of the cases which is the .snap file. You can update the snapshots once you are sure the changes are desired by doing
cd tests
npm run updateSnapshot # Update snapshots