Skip to content

Commit 372a3b9

Browse files
committed
Enable local tests
1 parent e4023c0 commit 372a3b9

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ import { Control} from './Control';
4040
import { Connection } from './Connection';
4141

4242

43-
const PGLET_VERSION: string = "0.4.2";
43+
const PGLET_VERSION: string = "0.4.6";
4444

4545
var pgletExe: string = null;
4646
var _installPromise: any = null;

tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
// "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
4949
// "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */
5050
// "typeRoots": [], /* List of folders to include type definitions from. */
51-
"types": ["node"], /* Type declaration files to be included in compilation. */
51+
"types": ["node", "jest"], /* Type declaration files to be included in compilation. */
5252
"allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
5353
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
5454
// "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */

unit_tests/Add.test.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
import { Stack, Textbox, page } from "../src/index";
22

3-
function getPage() {
4-
return page({name: "add test page", noWindow: true});
3+
function getPage(name) {
4+
return page({name: name, noWindow: true, local: true});
55
}
66

77
test('add single control', async () => {
8-
let p = await getPage();
8+
let p = await getPage("add-test-1");
99
let result = await p.add([new Textbox({id: "textbox1", label: "textbox 1"})])
1010

1111
expect(result).toBe("textbox1");
1212
});
1313

1414
test('add multiple controls', async () => {
15-
let p = await getPage();
15+
let p = await getPage("add-test-2");
1616
let result = await p.add([new Textbox({id: "textbox1", label: "textbox 1"}), new Textbox({id: "textbox2", label: "textbox 2"})])
1717

1818
expect(result).toBe("textbox1\ntextbox2");
1919
});
2020

2121
test('add control to existing control', async () => {
22-
let p = await getPage();
22+
let p = await getPage("add-test-3");
2323
let stack = new Stack({id: "stack1", horizontal: true})
2424
await p.add([stack]);
2525
let textbox = new Textbox({id: "textbox1", label: "textbox 1",})

unit_tests/Update.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Textbox, page } from "../src/index";
22

33
async function getPage() {
4-
return page({name: "updatetest page", noWindow: true});
4+
return page({name: "updatetest page", noWindow: true, local: true});
55

66
}
77

0 commit comments

Comments
 (0)