GithubHelp home page GithubHelp logo

standard8 / example-webextension Goto Github PK

View Code? Open in Web Editor NEW
32.0 32.0 7.0 231 KB

Example repository containing templates and good practices for creating a WebExtension for Firefox

License: Mozilla Public License 2.0

JavaScript 100.00%

example-webextension's People

Contributors

greenkeeper[bot] avatar heubergen avatar standard8 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

example-webextension's Issues

Help with Sinon's fake server on xhr request

Hi Mark,
First of all, thanks for this amazing repository! This is the most useful resource about testing a web extension.
I'm trying to test my extension but I'm encountering an issue on xhr request with Sinon's fake server.
My testing case:

  • Karma / Mocha / Sinon / Sinon-chrome
  • import fetch-api.js
  • test:
/* eslint-env mocha */
'use strict';

describe('Array', function () {
    let server;

    beforeEach(function () {
        server = sinon.fakeServer.create();
    });

    afterEach(function () {
        server.restore();
    });

    it('should return -1 when the value is not present', function () {
        const url = "/test";
        server.respondWith("GET", url, [
            200,
            {"Content-Type": "application/json"},
            '[{"id": 0}]'
        ]);

        const fetchApi = new FetchApi();
        fetchApi.Get(url, "podjapojdapjo");
    });
});

With that code, the request is fired and not mocked.
Any help would be appreciated.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.