factorio-test

Type definitions for using Factorio Test with TypescriptToLua


License
MIT
Install
npm install factorio-test@3.0.0

Documentation

Factorio test

A testing framework for factorio mods. Test real setups in-game, no mocking necessary!

describe("the factory", function()
    it("must grow", function()
        assert.is_true(get_factory_size() > old_factory_size)
    end)
end)

Getting started

For setting up your mod, see the wiki page on getting started.