(project)
| 14 | |
| 15 | it('should keep TextObject configuration after after a save and reload', function () { |
| 16 | const checkConfiguration = (project) => { |
| 17 | const layout = project.getLayout('Scene'); |
| 18 | const object = layout.getObjects().getObject('MyObject'); |
| 19 | const configuration = gd.asTextObjectConfiguration( |
| 20 | object.getConfiguration() |
| 21 | ); |
| 22 | expect(configuration.getText()).toBe('Hello'); |
| 23 | }; |
| 24 | |
| 25 | const serializerElement = new gd.SerializerElement(); |
| 26 | { |
no test coverage detected