This file contains hidden or 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
| plugins: | |
| # Sends logs over to jq for processing. This leverages kubectl plugin kubectl-jq. | |
| pinologsp: | |
| shortCut: Ctrl-L | |
| confirm: false | |
| description: "Logs (pino)" | |
| scopes: | |
| - pod | |
| command: bash | |
| background: false |
This file contains hidden or 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
| interface Foo { | |
| a: 'a'; | |
| foobar?: 'foo1'; | |
| } | |
| interface Bar { | |
| a: 'a'; | |
| foobar?: 'foo2'; | |
| } | |
| interface OneOf { | |
| a: 'a'; |
This file contains hidden or 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
| class EvensIterator { | |
| constructor(realArray) { | |
| this.realArray = realArray; | |
| } | |
| * [Symbol.iterator]() { | |
| for (const n of this.realArray) { | |
| if (n % 2 === 0) yield n; | |
| } | |
| } |
This file contains hidden or 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 { context } = require('testim'); /* Magic */ | |
| describe('my dynamic scope test', () => { | |
| let something = 'anything';// Can't access this variable, we can only use context | |
| function addFoo() { | |
| let name = context.getVar('name') || ''; | |
| name = name + 'foo'; | |
| context.setVar('name', name); | |
| } |