View cypress-log-5-28-2020.txt
2020-05-29T03:26:07.381Z cypress:server:project onMocha hook | |
2020-05-29T03:26:07.381Z cypress:server:reporter got mocha event 'hook' with args: [ { id: 'r17', title: '"before each" hook', hookName: 'before each', hookId: 'h3', body: 'function () {\n' + ' set_viewport_util_1.setViewport(viewport);\n' + ' }', type: 'hook', duration: 21, file: null } ] | |
2020-05-29T03:26:07.382Z cypress:server:socket automation:request get:cookies { domain: 'localhost' } | |
2020-05-29T03:26:07.382Z cypress:server:automation:cookies getting:cookies { domain: 'localhost' } | |
2020-05-29T03:26:07.382Z cypress:server:socket backend:request { eventName: 'reset:server:state', args: [] } |
View logs.js
[2020-01-06 10:24:07.349] [exthost] [info] extension host started | |
[2020-01-06 10:24:07.365] [exthost] [info] ExtensionService#_doActivateExtension vscode.typescript-language-features {"startup":false,"extensionId":{"value":"vscode.typescript-language-features","_lower":"vscode.typescript-language-features"},"activationEvent":"onLanguage:typescriptreact"} | |
[2020-01-06 10:24:07.366] [exthost] [info] ExtensionService#loadCommonJSModule file:///Applications/Visual Studio Code.app/Contents/Resources/app/extensions/typescript-language-features/dist/extension | |
[2020-01-06 10:24:07.390] [exthost] [info] ExtensionService#_doActivateExtension ecmel.vscode-html-css {"startup":false,"extensionId":{"value":"ecmel.vscode-html-css","_lower":"ecmel.vscode-html-css"},"activationEvent":"onLanguage:typescriptreact"} | |
[2020-01-06 10:24:07.390] [exthost] [info] ExtensionService#loadCommonJSModule file:///Users/jarretmoses/.vscode/extensions/ecmel.vscode-html-css-0.2.3/dist/extension | |
[2020-01-06 10:24:07.452] [exthost] [info] Extensi |
View 3.8.x_run_a_test.js
cypress: server: events got request for event: close: browser, undefined + 9 s | |
cypress: server: events sending ipc data { | |
type: 'close:browser', | |
data: { | |
id: 0.41759796470795063, | |
data: undefined | |
} | |
} + 0 ms | |
cypress: server: events got request for event: launch: browser, { | |
browser: { |
View 3.7.0_run_a_test.js
Cypress / cy / production / projects / web - b86ba6be701b62eddebf7f0baf8415dc / state.json + 1 ms | |
cypress: server: file gettin lock succeeded or failed | |
for / Users / jarretmoses / Library / Application Support / Cypress / cy / production / projects / web - | |
b86ba6be701b62eddebf7f0baf8415dc / state.json + 0 ms | |
cypress: server: file read / Users / jarretmoses / Library / Application Support / Cypress / cy / production / | |
projects / web - b86ba6be701b62eddebf7f0baf8415dc / state.json + 0 ms | |
cypress: server: file read succeeded or failed | |
for / Users / jarretmoses / Library / Application Support / Cypress / cy / production / projects / web - | |
b86ba6be701b62eddebf7f0baf8415dc / state.json + 1 ms | |
cypress: server: file attempt to unlock / Users / jarretmoses / Library / Application Support / Cypress / cy / |
View 3.8.x-cy-open.js
cypress: cli: cli cli starts with arguments["/usr/local/bin/node", | |
"/Users/jarretmoses/Dev/web/node_modules/.bin/cypress", "open"] + 0 ms | |
cypress: cli NODE_OPTIONS is not set + 0 ms | |
cypress: cli: cli program parsing arguments + 2 ms | |
cypress: cli: cli opening Cypress + 1 ms | |
cypress: cli parsed cli options {} + 47 ms | |
cypress: cli opening from options { | |
"project": "/Users/jarretmoses/Dev/web" | |
} + 0 ms | |
cypress: cli command line arguments["--project", "/Users/jarretmoses/Dev/web"] + 0 ms |
View 3.7.0-cy-open.js
cypress: cli cli starts with arguments["/usr/local/bin/node", "/Users/jarretmoses/Dev/web/node_modules/.bin/cypress", | |
"open"] + 0 ms | |
cypress: cli NODE_OPTIONS is not set + 0 ms | |
cypress: cli program parsing arguments + 2 ms | |
cypress: cli opening Cypress + 1 ms | |
cypress: cli parsed cli options {} + 46 ms | |
cypress: cli opening from options { | |
"project": "/Users/jarretmoses/Dev/web" | |
} + 0 ms | |
cypress: cli command line arguments["--project", "/Users/jarretmoses/Dev/web"] + 0 ms |
View debounce.js
const debounce = (callback, wait) => { | |
let timeout = null; | |
return (...args) => { | |
clearTimeout(timeout); | |
timeout = setTimeout(() => { | |
callback.apply(this, args); | |
}, wait); | |
}; |
View cypress-debug.log
cypress:cli cli starts with arguments ["/usr/local/bin/node","/Users/jarretmoses/Dev/web/node_modules/.bin/cypress","open"] +0ms | |
cypress:cli NODE_OPTIONS is not set +0ms | |
cypress:cli program parsing arguments +2ms | |
cypress:cli opening Cypress +1ms | |
cypress:cli parsed cli options {} +35ms | |
cypress:cli opening from options {"project":"/Users/jarretmoses/Dev/web"} +0ms | |
cypress:cli command line arguments ["--project","/Users/jarretmoses/Dev/web"] +0ms | |
cypress:cli verifying Cypress app +0ms | |
cypress:cli checking environment variables +1ms |
View auth-token-header-set.js
// api.js | |
// @flow | |
import axios from 'axios'; | |
import { BASE_URL } from '../constants/api'; | |
type BaseFetch = { | |
url: string, | |
} |
View xcode-print-font-names.m
for (NSString *familyName in [UIFont familyNames]){ | |
NSLog(@"Family name: %@", familyName); | |
for (NSString *fontName in [UIFont fontNamesForFamilyName:familyName]) { | |
NSLog(@"--Font name: %@", fontName); | |
} | |
} |
NewerOlder