import { farmmanager } from '../src/client/farmmanager.js' import { suite, test } from 'node:test' import assert from 'node:assert' suite('farmmanager plugin', () => { suite('expand', () => { test('can escape html markup characters', () => { const result = farmmanager.expand('try < & >') assert.equal(result, 'try < & >') }) }) })