- I don't have a specific topic, I would love to get to know "what people are talking about"...
- Expressing examples in Markdown and How lean/agile teams should prioritise work for maximum impact.
- Cucumber for mobile app testing
- Learning: Organising feature files as a living documentation for a whole system in an microservice architecture where feature files ""live"" in the corresponding microservices.
- The state of Cucumber messaging and reporting as a whole
- Patterns and anti-patterns in Cucumber.
- Bdd and Java
- integration with another report tools
- Cucumber / Behat
- ethical software development, narratives,
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
### Keybase proof | |
I hereby claim: | |
* I am mattwynne on github. | |
* I am mattwynne (https://keybase.io/mattwynne) on keybase. | |
* I have a public key ASCCJyYpFMQWfVzK1MWiDMnDCjkw2Bvv_jW6H1mpgRXN4Ao | |
To claim this, I am signing this object: |
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] ------------------------------------------------------- | |
[INFO] T E S T S | |
[INFO] ------------------------------------------------------- | |
[INFO] Running Cukes | |
[ERROR] Tests run: 2, Failures: 0, Errors: 2, Skipped: 0, Time elapsed: 0.874 s <<< FAILURE! - in Cukes | |
[ERROR] Eat some cukes Time elapsed: 0.855 s <<< ERROR! | |
java.lang.IllegalStateException: No valid CDI implementation found | |
[ERROR] Eat some more cukes Time elapsed: 0.009 s <<< ERROR! | |
java.lang.IllegalStateException: No valid CDI implementation found |
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 Queue = require('bull') | |
const q = new Queue('test') | |
const main = async () => { | |
await q.clean(0, 'completed') | |
q.process(async job => { | |
console.log('work starting') | |
await new Promise(resolve => setTimeout(resolve, 3000)) | |
console.log('work done') | |
}) |
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
import "reflect-metadata"; | |
import {createConnection} from "typeorm"; | |
import {User} from "./entity/User"; | |
process.on('exit', () => { | |
console.log('exit: ', new Date()) | |
}) | |
createConnection().then(async connection => { |
Link to your website: http://localhost
Open your HTML code in your editor. It's in /var/www/html/index.html
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
# From a Live CD / USB | |
sudo apt-get update && sudo apt-get install mdadm && sudo mdadm --assemble --scan | |
mkdir /mnt | |
sudo mount /dev/md2 /mnt | |
sudo mount /dev/md0 /mnt/boot | |
for i in /dev /dev/pts /proc /sys /run; do sudo mount -B $i /mnt$i; done | |
sudo chroot /mnt |
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
> testng@0.0.0 test-cucumber /Users/matt/projects/cucumber-electron-testbed | |
> npx cucumber-electron test/features/component-x.feature --require 'test/**/steps.ts' --require-module 'ts-node/register' | |
[32m.[39m[31mF[39m[36m-[39m[32m.[39m | |
Failures: | |
1) Scenario: component X can be instanciated # [90mtest/features/component-x.feature:3[39m | |
[32m✔ Before[39m # [90mtest/features/step_definitions/steps.ts:11[39m |
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
Feature: Calculate Variance | |
Assumptions, to keep things simple: | |
- Payroll period aligned with calendar month | |
- Benefit effective date = initiated date | |
- No loading on payroll cut-off date | |
- No other changes during the month that affect the result | |
- Employee gets a cover by default | |
- Variance calculation uses calendar months strategy |
NewerOlder