There are a few areas, we're testing in Cordova:
- Unit tests
- Integration tests
- e2e tests.
and there are four main components which quality we want to be confident in:
function git_prompt_filter_new() | |
local start_filter = os.clock() | |
-- Colors for git status | |
local colors = { | |
clean = "\x1b[1;37;40m", | |
dirty = "\x1b[31;1m", | |
} |
var lodash = require('lodash') // prime cache | |
require.cache[require.resolve('underscore')] = require.cache[require.resolve('lodash')] | |
require('assert').equal(require('underscore'), require('lodash')) |
Verbose logs are written to /Users/kotikov.vladimir/react-native-debug-adapter.log | |
2:14:07 PM, 1/19/2017 | |
OS: darwin x64 | |
Adapter node: v7.0.0 x64 | |
vscode-chrome-debug-core: 3.8.1 | |
From client: initialize({"adapterID":"reactnative","pathFormat":"path","linesStartAt1":true,"columnsStartAt1":true,"supportsVariableType":true,"supportsVariablePaging":true,"supportsRunInTerminalRequest":true}) | |
To client: {"seq":0,"type":"response","request_seq":1,"command":"initialize","success":true,"body":{"exceptionBreakpointFilters":[{"label":"All Exceptions","filter":"all","default":false},{"label":"Uncaught Exceptions","filter":"uncaught","default":true}],"supportsConfigurationDoneRequest":true,"supportsSetVariable":true,"supportsConditionalBreakpoints":true,"supportsCompletionsRequest":true,"supportsHitConditionalBreakpoints":true}} | |
From client: launch({"debugServer":4712,"name":"Debug iOS","program":"/Users/kotikov.vladimir/sandbox/foo/.vscode/launchReactNative.js","type":"reactnative","request":"launch","platform":"ios","targ |
var UnityLoader = UnityLoader || { | |
Compression: { | |
identity: { | |
require: function () { | |
return {} | |
}, | |
decompress: function (e) { | |
return e | |
} | |
}, |
#!/bin/bash | |
set -o errexit -o pipefail -o noclobber -o nounset | |
# VSCode runs this when starting local debug: | |
# env PYTHONIOENCODING=UTF-8 PYTHONUNBUFFERED=1 /Users/kotikov.vladimir/repos/reddit/snoovatar/.venv/bin/python /Users/kotikov.vladimir/.vscode/extensions/ms-python.python-2019.2.5558/pythonFiles/ptvsd_launcher.py --default --client --host localhost --port 54077 /Users/kotikov.vladimir/repos/reddit/snoovatar/snoovatar/__init__.py | |
FILENAME="${1##*/}" | |
if [ "$FILENAME" == "interpreterInfo.py" ]; then | |
python3 "$1" |
#!/usr/bin/env python3 | |
from concurrent.futures import ThreadPoolExecutor | |
from subprocess import call | |
from argparse import ArgumentParser | |
# pip install PyGithub | |
from github import Github | |
from github.Repository import Repository |