1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-08-13 19:52:52 +02:00

Feature/#220 iframe support (#315)

* Refactored Virtual DOM structure
* Added new E2E tests
* Updated E2E Test Runner
This commit is contained in:
Tim Voronov
2019-06-19 17:58:56 -04:00
committed by GitHub
parent 8c07516ed1
commit d7b923e4c3
103 changed files with 2815 additions and 1629 deletions

View File

@@ -246,6 +246,7 @@ func TestAdd(t *testing.T) {
}
for _, argN := range args {
argN := argN
Convey(argN.Type().String(), func() {
So(operators.Add(arg1, argN), ShouldEqual, values.NewInt(1))
})
@@ -743,6 +744,7 @@ func TestMultiply(t *testing.T) {
}
for _, argN := range args {
argN := argN
Convey(argN.Type().String(), func() {
So(operators.Multiply(arg1, argN), ShouldEqual, values.NewInt(0))
})
@@ -1011,6 +1013,7 @@ func TestDivide(t *testing.T) {
}
for _, argN := range args {
argN := argN
Convey(argN.Type().String(), func() {
So(func() {
operators.Divide(arg1, argN)