14 lines
274 B
JavaScript
14 lines
274 B
JavaScript
"use strict";
|
|
|
|
var _ = require(".");
|
|
|
|
describe('properties', function () {
|
|
it('type PropertyTypes.TEXT', function () {
|
|
expect(function () {
|
|
var prop = {
|
|
type: _.PropertyTypes.TEXT
|
|
};
|
|
return prop.type === 'text';
|
|
}).toBeTruthy();
|
|
});
|
|
}); |