import { describe, it } from 'node:test'; import assert from 'node:assert/strict'; import { int32 } from 'moroutine'; describe('Int32', () => { it('self-allocates and initializes to zero', () => { const v = int32(); assert.equal(v.load(), 0); }); it('stores and loads a value', () => { const v = int32(); v.store(42); assert.equal(v.load(), 42); }); it('exposes byteSize of 4', () => { assert.equal(int32.byteSize, 4); }); it('exposes byteAlignment of 4', () => { assert.equal(int32.byteAlignment, 4); }); });