Skip to content

Commit 9fdd326

Browse files
committed
Merge branch 'main' into feat/multi-value
2 parents 0b7919a + b8dbd3d commit 9fdd326

File tree

8 files changed

+78
-73
lines changed

8 files changed

+78
-73
lines changed

tests/latch/latch-0.3.1.tgz

-56.2 KB
Binary file not shown.

tests/latch/latch-0.4.1.tgz

66 KB
Binary file not shown.

tests/latch/package-lock.json

Lines changed: 66 additions & 61 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/latch/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
"version": "1.0.0",
44
"scripts": {
55
"debugtest": "npx ts-node ./src/debugger.test.ts",
6-
"primtest": "npx ts-node ./src/primitives.test.ts",
7-
"spectest": "npx ts-node ./src/spec.test.ts",
8-
"comptest": "npx ts-node ./src/comp.test.ts"
6+
"primtest": "npx ts-node ./src/primitives.test.ts",
7+
"spectest": "npx ts-node ./src/spec.test.ts",
8+
"comptest": "npx ts-node ./src/comp.test.ts"
99
},
1010
"devDependencies": {
11-
"latch": "file:./latch-0.3.1.tgz",
11+
"latch": "file:./latch-0.4.1.tgz",
1212
"mqtt": "^4.3.7",
1313
"serialport": "^10.4.0",
1414
"typescript": "^4.5.5"

tests/latch/src/comp.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ import {
44
Framework,
55
HybridScheduler,
66
invoke,
7-
OutputStyle,
7+
StyleType,
88
returns,
99
Step,
1010
WASM
1111
} from "latch";
1212

1313
const framework = Framework.getImplementation();
14-
framework.style(OutputStyle.github);
14+
framework.style(StyleType.github);
1515

1616
const suite = framework.suite('Specification test suite for WebAssembly');
1717
suite.testee('emulator [:8500]', new EmulatorSpecification(8500));

tests/latch/src/debugger.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {
1010
Framework,
1111
getValue, HybridScheduler,
1212
Kind,
13-
Message, OutputStyle,
13+
Message, StyleType,
1414
Step, Suite,
1515
TestScenario,
1616
Breakpoint
@@ -26,7 +26,7 @@ const EXAMPLES: string = `${__dirname}/../examples/`;
2626
*/
2727

2828
const framework = Framework.getImplementation();
29-
framework.style(OutputStyle.github);
29+
framework.style(StyleType.github);
3030

3131
const integration: Suite = framework.suite('Integration tests: Debugger'); // must be called first
3232

tests/latch/src/primitives.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ import {
88
Message,
99
TestScenario,
1010
WASM,
11-
awaitBreakpoint, PureAction, OutputStyle, Suite, Assertable, assertable
11+
awaitBreakpoint, PureAction, StyleType, Suite, Assertable, assertable
1212
} from 'latch';
1313
import * as mqtt from 'mqtt';
1414
import Type = WASM.Type;
1515
import {Breakpoint} from "latch/dist/types/debug/Breakpoint";
1616

1717
const framework = Framework.getImplementation();
18-
framework.style(OutputStyle.github);
18+
framework.style(StyleType.github);
1919

2020
// TODO disclaimer: file is currently disabled until latch supports AS compilation
2121

tests/latch/src/spec.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
Framework, HybridScheduler,
55
invoke,
66
Invoker,
7-
OutputStyle,
7+
StyleType,
88
returns,
99
Step,
1010
TestScenario,
@@ -58,7 +58,7 @@ if (TESTFILE.length > 0) {
5858
// run tests
5959

6060
const framework = Framework.getImplementation();
61-
framework.style(OutputStyle.github);
61+
framework.style(StyleType.github);
6262

6363
const spec = framework.suite('Specification test suite for WebAssembly');
6464
spec.testee('emulator [:8500]', new EmulatorSpecification(8500));

0 commit comments

Comments
 (0)