This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"time": "2024-08-21T17:25:32.000Z", | |
"timezoneOffset": -300, | |
"clockDriftOffset": 0, | |
"conversionOffset": 0, | |
"deviceTime": "2024-08-21T12:25:32", | |
"deviceId": "-16140367", | |
"type": "smbg", | |
"value": 67, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"_deduplicator": { | |
"hash": "QQ6feU4Lko6DtunH/O74/9FQEFdsocLxH+8GehEcl3s=" | |
}, | |
"annotations": [ | |
{ | |
"code": "bg/out-of-range", | |
"threshold": 20, | |
"value": "low" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"_deduplicator": { | |
"hash": "ew3zPhvm8O6GCRKPgqqwMdoQ5Uc4RHhNGfaCupu0+js=" | |
}, | |
"annotations": [ | |
{ | |
"code": "bg/out-of-range", | |
"value": "low" | |
}, | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"info": { | |
"_postman_id": "dcab6bbd-a770-48b7-980a-a3f2ded1ef31", | |
"name": "DATOJ23 API tests", | |
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", | |
"_exporter_id": "2294419", | |
"_collection_link": "https://web.postman.co/workspace/e9052594-972b-45e0-b6b0-7e7aff2f415f/collection/2294419-dcab6bbd-a770-48b7-980a-a3f2ded1ef31?action=share&creator=2294419&source=collection_link" | |
}, | |
"item": [ | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"version":2,"data":[{"title":"REMOTE","description":"REMOTE","image":"","imageUrl":"","date":"2021-07-09T14:35:30.702Z"},{"title":"REMOTE1","description":"REMOTE1","image":"","imageUrl":"","date":"2021-07-09T14:35:30.702Z"},{"title":"REMOTE2","description":"REMOTE3","image":"","imageUrl":"","date":"2021-07-09T14:35:30.702Z"},{"title":"REMOTE3","description":"REMOTE2","image":"","imageUrl":"","date":"2021-07-09T14:35:30.702Z"},{"title":"REMOTE3","description":"REMOTE2","image":"","imageUrl":"","date":"2021-07-09T14:35:30.702Z"},{"title":"REMOTE3","description":"REMOTE2","image":"","imageUrl":"","date":"2021-07-09T14:35:30.702Z"},{"title":"REMOTE3","description":"REMOTE2","image":"","imageUrl":"","date":"2021-07-09T14:35:30.702Z"},{"title":"REMOTE3","description":"REMOTE2","image":"","imageUrl":"","date":"2021-07-09T14:35:30.702Z"},{"title":"REMOTE","description":"REMOTE","image":"","imageUrl":"","date":"2021-07-09T14:35:30.702Z"},{"title":"REMOTE1","description":"REMOTE1","image":"","imageUrl":"","date":"2021 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const loginMachine = Machine({ | |
initial: "login_opened", | |
context: { | |
username: false, | |
password: false, | |
registration_done: false, | |
registration_filled: false, | |
}, | |
states: { | |
login_opened: { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const incrementBack = (context) => context.back + 1; | |
const isAnonymous = (context) => context.anonymous === true; | |
const isLoggedIn = (context) => context.anonymous === false; | |
const adcoMachine = Machine({ | |
id: 'wizard', | |
initial: 'buying_stuff', | |
context: { | |
back: 0, | |
modal_confirmed: null, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const adcoMachine = Machine({ | |
id: 'wizard', | |
initial: 'start', | |
context: { | |
back: false, | |
}, | |
states: { | |
start: { | |
on: { | |
BOM_UPLOAD: 'uploaded_bom', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ yarn test:e2e | |
yarn run v1.21.1 | |
$ npx wdio wdio.conf.js | |
Execution of 1 spec files started at 2020-06-16T11:59:11.824Z | |
2020-06-16T11:59:12.031Z INFO @wdio/cli:launcher: Run onPrepare hook | |
2020-06-16T11:59:12.035Z INFO @wdio/cli:launcher: Run onWorkerStart hook | |
2020-06-16T11:59:12.036Z INFO @wdio/local-runner: Start worker 0-0 with arg: wdio.conf.js | |
[0-0] 2020-06-16T11:59:12.281Z INFO @wdio/local-runner: Run worker command: run |
NewerOlder