initial working version

This commit is contained in:
2017-05-25 15:09:01 +02:00
commit 64eea2641e
12 changed files with 460 additions and 0 deletions

21
test/test.ts Normal file
View File

@ -0,0 +1,21 @@
import { expect, tap } from 'tapbundle'
import * as smartyaml from '../dist/index'
let yamlString = `someKey: someValue
someKey2: someValue2
`
tap.test('should convert yaml string to object', async () => {
let myObject = await smartyaml.yamlStringToObject(yamlString)
expect(myObject.someKey).to.equal('someValue')
expect(myObject.someKey2).to.equal('someValue2')
})
tap.test('should convert an object to a string', async () => {
let myObject = await smartyaml.yamlStringToObject(yamlString)
let myString = await smartyaml.objectToYamlString(myObject)
expect(myString).to.equal(yamlString)
})
tap.start()