Skip to content

Commit bf72529

Browse files
author
Peter Maquiran
committed
Code reveiw
remove brackets rename required to unique in the test description
1 parent d336ec5 commit bf72529

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

example/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,9 @@
103103
});
104104

105105
window.conn = a;
106-
window['Connector'] = Connector
107-
window['Model'] = Model
108-
window['RelationTypes'] = RelationTypes
106+
window.Connector = Connector
107+
window.Model = Model
108+
window.RelationTypes = RelationTypes
109109

110110
</script>
111111
</body>

test/functionl/model-no-relationship.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ describe('simple model', () => {
1111
await page.goto(`http://127.0.0.1:${port}/example/index.html`)
1212
})
1313

14-
it('Create model with one attribute that is required', async () => {
14+
it('Create model with one attribute that is unique', async () => {
1515

1616
// wait for variables to be present in the dom
1717
await page.waitForFunction(() => 'Connector' in window);

0 commit comments

Comments
 (0)