Skip to content

Instantly share code, notes, and snippets.

package main
import (
"regexp"
"testing"
"github.com/stretchr/testify/assert"
)
func A(name string) string {
@mstoykov
mstoykov / a.js
Last active August 28, 2019 08:00
tested example for issue k6/#707
import Class1 from './class1File.js';
import Class2 from './class2File.js';
export default {
Class1,
Class2
};
#!/bin/bash
keep=false
while [[ $# -gt 0 ]]
do
key="$1"
case $key in
-k|--keep)
keep=true