Skip to content
This repository has been archived by the owner on Sep 7, 2019. It is now read-only.

Commit

Permalink
Remove ebox tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
millette committed Mar 11, 2017
1 parent 2e059a9 commit a83a05f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@
import test from 'ava'
import fn from './'

test('ebox j0k1s0', async t => {
test.skip('ebox j0k1s0', async t => {
const result = await fn.ebox('j0k1s0')
t.is(result.cable_available, 'V-Cable')
t.not(result.areservicessupported, 'Yes')
t.not(result.rateband, 'F')
})

test('ebox j0k2r0', async t => {
test.skip('ebox j0k2r0', async t => {
const result = await fn.ebox('j0k2r0')
t.is(result.cable_available, 'V-Cable')
t.is(result.areservicessupported, 'Yes')
t.is(result.rateband, 'F')
})

test('ebox h2k4b2', async t => {
test.skip('ebox h2k4b2', async t => {
const result = await fn.ebox('h2k4b2')
t.is(result.cable_available, 'V-Cable')
t.is(result.areservicessupported, 'Yes')
Expand Down Expand Up @@ -58,7 +58,7 @@ test.skip('acanac j0k1s0', async t => {
test('acanac j0k2r0', async t => {
const result = await fn.acanac('j0k2r0')
t.falsy(result.AvailabilityLookupError)
t.is(result.InternetOptions.length, 5)
t.is(result.InternetOptions.length, 4)
t.is(result.PhoneOptions[0].ID, 1028)
t.is(result.TVOptions.length, 0)
})
Expand Down

0 comments on commit a83a05f

Please sign in to comment.