mirror of
https://github.com/ksyasuda/SubMiner.git
synced 2026-07-27 16:49:51 -07:00
8711cf1a48
- drop always-true isVerbNonIndependent export; collapse shouldMerge branch - remove node-compat exclusion list from bun-src-full lane - simplify test:fast (drop test:runtime:compat), test:env, test:smoke:dist scripts - rename test:launcher:env:src -> test:env in docs
8 lines
262 B
TypeScript
8 lines
262 B
TypeScript
import assert from 'node:assert/strict';
|
|
import test from 'node:test';
|
|
import * as tokenMerger from './token-merger';
|
|
|
|
test('does not expose the redundant verb non-independent predicate', () => {
|
|
assert.equal('isVerbNonIndependent' in tokenMerger, false);
|
|
});
|