arb-convert
Version:
Convert Application Resource Bundle (ARB) translation files to other translation formats and back
14 lines (13 loc) • 497 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
var makeText_1 = __importDefault(require("../makeText"));
test('text node having the correct structure', function () {
var node = makeText_1.default('wubba lubba dub dub');
expect(node).toMatchObject({
type: 'text',
text: 'wubba lubba dub dub',
});
});