A distributed build system for the open source community. | This chat is not actively monitored by Travis CI employees, for Travis support please email support@travis-ci.org.
My travis env is generating this warning after I install my deps:
Environment Vars (like PATH) have changed. Close/reopen your shell to
I notice my project does not link to this particular dependency. Is there a way to refresh the git bash shell before building my C project.
(For reference I am using choco install openssl
to get my C lang vm to build my project with an openssl dependency...)
hi guys,
I am using testcafe as a TDD source for my project. While testing in my machine its working.
When I build in travis... Iam getting below error..
Error:
The command "sudo -E apt-get -yq --no-install-suggests --no-install-recommends $(travis_apt_get_options) install google-chrome-stable fluxbox" failed and exited with 100 during .
.travis.yml
dist: trusty
sudo: required
language: node_js
node_js:
- node
- '9'
addons:
firefox: latest
apt:
sources:
- google-chrome
packages:
- google-chrome-stable fluxbox
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- sleep 3
- fluxbox >/dev/null 2>&1 &
Can any one solve this mystery ?
The command "sudo -E apt-get -yq --no-install-suggests --no-install-recommends $(travis_apt_get_options) install google-chrome-stable fluxbox" failed and exited with 100 during .
check here link
... which provided me a good insight.import { Selector } from 'testcafe';
fixture `Creamie Basis Testcases`
.page `http://localhost:8080/tests/test_example/src/index.html`;
test('Binder: input value reflection in dom', async t => {
await t
.typeText('#binder-textbox', 'creamie')
.expect(Selector('#binder-reflecter').innerText).eql('creamie');
});
test('Events: click event', async t => {
await t
.click('#event-click')
.expect(Selector('#binder-reflecter').innerText).eql('Data Changed');
});
import { Selector } from 'testcafe';
fixture `Creamie Basis Testcases`
.page `http://localhost:8080/tests/test_example/src/index.html`;
test('Binder: input value reflection in dom', async t => {
await t
.typeText('#binder-textbox', 'creamie')
.expect(Selector('#binder-reflecter').innerText).eql('creamie');
});
I was hoping someone might be here to help with an npm deployment problem. Travis picks up the new tag, but tries to deploy an old tag. Very strange.
https://travis-ci.com/brettswift/cdk-git-config/builds/152477758
triggered by: v0.4.1 Merge pull request #3 from brettswift/featu .. .
but logs fail with You cannot publish over the previously published versions: 0.3.9.
earlier in the logs I see: npm notice 📦 cdk-git-config@0.3.9
. This is very odd.
Installing oraclejdk8
means: https://travis-ci.org/github/frugalmechanic/fm-common/jobs/685915376
Hey all! Has anybody configured a mongodb replicaset for travis? I need to do some transaction testing and I was left wondering how I should approach this
The only reference I have found so far, but I'm not too big of a fan of sleep methods: https://georgeshank.com/how-to-enable-a-mongodb-replica-set-on-travis/
Hi Everyone ,i am trying to run mocha + typescript tests on travis ci.I am getting error TS2307: error TS2307: Cannot find module '../../src/apps/NetSuite’.Locally i am able to run the successfully.Here is my tsconfig.json.Please help me out
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"sourceMap": false,
"experimentalDecorators": true,
"lib": ["es6", "esnext"],
"outDir": "exec",
"removeComments": true,
"pretty": true,
"allowSyntheticDefaultImports": true,
"types": ["node", "mocha"],
"diagnostics": false,
"moduleResolution": "node",
"preserveSymlinks": true,
"allowJs": false
},
"exclude": ["node_modules"],
"compileOnSave": false
}