Files
flights_web_raw/node_modules/@storybook/csf/dist/properties.test.js
T

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();
});
});