We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b091b4f commit c35f1b2Copy full SHA for c35f1b2
1 file changed
packages/grid_client/tests/modules/zmachine_light.test.ts
@@ -18,6 +18,7 @@ const networkInterface = new ZNetworkInterface();
18
const disks = new Mount();
19
20
beforeEach(() => {
21
+ zmachineLight = new ZmachineLight();
22
computeCapacity.cpu = 1;
23
computeCapacity.memory = 256 * 1024 ** 2;
24
@@ -36,7 +37,8 @@ beforeEach(() => {
36
37
disks.name = "zdisk";
38
disks.mountpoint = "/mnt/data";
39
- flist: FLISTS.MICROVMS_UBUNTU_22.flist, (zmachineLight.network = network);
40
+ zmachineLight.flist = FLISTS.MICROVMS_UBUNTU_22.flist;
41
+ zmachineLight.network = network;
42
zmachineLight.size = rootfs_size * 1024 ** 3;
43
zmachineLight.mounts = [disks];
44
zmachineLight.entrypoint = FLISTS.MICROVMS_UBUNTU_24.entryPoint;
0 commit comments